Files
pikasTech-HWLAB/deploy/gitops/g14/argocd/application.yaml
T
2026-05-25 01:04:12 +08:00

35 lines
769 B
YAML

{
"apiVersion": "argoproj.io/v1alpha1",
"kind": "Application",
"metadata": {
"name": "hwlab-g14-dev",
"namespace": "argocd",
"labels": {
"app.kubernetes.io/part-of": "hwlab",
"hwlab.pikastech.local/gitops-target": "g14"
}
},
"spec": {
"project": "hwlab-g14",
"source": {
"repoURL": "git@github.com:pikasTech/HWLAB.git",
"targetRevision": "G14",
"path": "deploy/gitops/g14/runtime"
},
"destination": {
"server": "https://kubernetes.default.svc",
"namespace": "hwlab-dev"
},
"syncPolicy": {
"automated": {
"prune": false,
"selfHeal": true
},
"syncOptions": [
"CreateNamespace=true",
"ApplyOutOfSyncOnly=true"
]
}
}
}