26 lines
656 B
YAML
26 lines
656 B
YAML
# Agent Gumbo — deployed from agents/k8s/ into its dedicated namespace.
|
|
# sync-wave 1: depends on ai-core (wave 0) and platform-data (wave -1).
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: agent-gumbo
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "1"
|
|
spec:
|
|
project: agentic-os
|
|
source:
|
|
repoURL: http://192.168.8.248:3000/deepkoluguri/agentic-os.git
|
|
targetRevision: main
|
|
path: agents/k8s
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: ai-agents-gumbo
|
|
syncPolicy:
|
|
automated:
|
|
prune: false
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
|