Archon/k8s/03-deployment-mcp.yaml
Luis Erlacher d36597fe43
Some checks failed
Build Images / build-server-docker (push) Has been cancelled
Build Images / build-mcp-docker (push) Has been cancelled
Build Images / build-agents-docker (push) Has been cancelled
Build Images / build-frontend-docker (push) Has been cancelled
Build Images / build-server-k8s (push) Has been cancelled
Build Images / build-mcp-k8s (push) Has been cancelled
Build Images / build-agents-k8s (push) Has been cancelled
Build Images / build-frontend-k8s (push) Has been cancelled
feat(config): Add sprint and workflow management configuration
Introduced new sections in core-config.yaml for managing sprints and workflows:
- Defined locations for sprint documentation and current sprint file.
- Added workflow management settings including current workflow file and templates.
- Included AI agent context configuration for better context management.

This enhancement supports improved organization and tracking of project workflows and sprints.
2025-10-28 14:41:00 -03:00

58 lines
1.6 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: archon-mcp
namespace: unlkd
labels:
app.kubernetes.io/name: archon-mcp
app.kubernetes.io/instance: archon
app.kubernetes.io/component: mcp
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: archon-mcp
app.kubernetes.io/instance: archon
template:
metadata:
labels:
app.kubernetes.io/name: archon-mcp
app.kubernetes.io/instance: archon
app.kubernetes.io/component: mcp
spec:
containers:
- name: archon-mcp
# IMPORTANT: Build and push your image first:
# docker build -t your-registry/archon-mcp:latest -f python/Dockerfile.mcp python/
# docker push your-registry/archon-mcp:latest
image: your-registry/archon-mcp:latest
imagePullPolicy: Always
ports:
- name: http
containerPort: 8051
protocol: TCP
envFrom:
- secretRef:
name: archon-secret
resources:
requests:
cpu: 250m
memory: 512Mi
limits:
cpu: 1000m
memory: 2Gi
livenessProbe:
tcpSocket:
port: http
initialDelaySeconds: 60
periodSeconds: 30
timeoutSeconds: 10
failureThreshold: 3
readinessProbe:
tcpSocket:
port: http
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3