argocd/argo1/templates/_self.yaml

24 lines
485 B
YAML
Raw Normal View History

2023-04-23 16:19:35 +00:00
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: "{{ .Release.Name }}"
namespace: "{{ .Release.Namespace }}"
spec:
project: default
source:
{{ .Values.bootstrap.source | toYaml | nindent 4 }}
destination:
namespace: "{{ .Release.Namespace }}"
name: in-cluster
2023-04-23 16:29:38 +00:00
syncPolicy:
2023-04-23 17:07:01 +00:00
automated: {}
2023-04-23 16:29:38 +00:00
syncOptions:
- CreateNamespace=true
retry:
limit: 10
backoff:
duration: 5s
factor: 2
maxDuration: 3m0s