DO-1431 Co-authored-by: denis.patrakeev <denis.patrakeev@avroid.tech> Reviewed-on: https://git.avroid.tech/K8s/k8s-configs/pulls/6
38 lines
1020 B
YAML
38 lines
1020 B
YAML
# -- Deploy Argo CD Applications within this helm release
|
|
# @default -- `{}` (See [values.yaml])
|
|
## Ref: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/
|
|
applications:
|
|
root-app:
|
|
namespace: argocd
|
|
additionalLabels: {}
|
|
additionalAnnotations: {}
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io
|
|
project: default
|
|
source:
|
|
repoURL: https://git.avroid.tech/K8s/k8s-configs.git
|
|
targetRevision: master
|
|
path: clusters/k8s-avroid-office.prod.local/namespaces
|
|
directory:
|
|
recurse: true
|
|
exclude: '*'
|
|
include: 'argocd-apps-*.yaml'
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: argocd
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
- Validate=true
|
|
- PrunePropagationPolicy=foreground
|
|
- PruneLast=true
|
|
retry:
|
|
limit: 5
|
|
backoff:
|
|
duration: 5s
|
|
factor: 2
|
|
maxDuration: 3m
|