Archon/k8s-argocd/deployment-frontend.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

86 lines
2.5 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: archon-frontend
labels:
app.kubernetes.io/component: frontend
app.kubernetes.io/part-of: archon
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/component: frontend
template:
metadata:
labels:
app.kubernetes.io/component: frontend
app.kubernetes.io/part-of: archon
spec:
containers:
- name: archon-frontend
image: coleam00/archon-frontend:latest
imagePullPolicy: Always
ports:
- name: http
containerPort: 3737
protocol: TCP
env:
- name: VITE_API_URL
value: https://archon.automatizase.com.br/api
- name: API_URL
value: https://archon.automatizase.com.br/api
- name: VITE_MCP_URL
value: https://archon.automatizase.com.br/mcp
- name: MCP_URL
value: https://archon.automatizase.com.br/mcp
- name: VITE_ARCHON_SERVER_PORT
value: "8181"
- name: ARCHON_SERVER_PORT
valueFrom:
configMapKeyRef:
name: archon-config
key: ARCHON_SERVER_PORT
- name: VITE_ARCHON_MCP_PORT
value: "8051"
- name: ARCHON_MCP_PORT
valueFrom:
configMapKeyRef:
name: archon-config
key: ARCHON_MCP_PORT
- name: HOST
valueFrom:
configMapKeyRef:
name: archon-config
key: HOST
- name: VITE_ALLOWED_HOSTS
value: "archon.automatizase.com.br"
- name: VITE_SHOW_DEVTOOLS
value: "false"
- name: DOCKER_ENV
value: "true"
- name: PROD
value: "false"
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 1Gi
livenessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 30
periodSeconds: 30
timeoutSeconds: 10
failureThreshold: 3
readinessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3