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:
|
2023-04-23 19:24:00 +00:00
|
|
|
repoURL: "{{.Values.bootstrap.source.repoURL}}"
|
|
|
|
targetRevision: "{{.Values.bootstrap.source.targetRevision}}"
|
|
|
|
path: argo1
|
2023-04-23 16:19:35 +00:00
|
|
|
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
|