24 lines
562 B
YAML
24 lines
562 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: argocd
|
|
spec:
|
|
destination:
|
|
name: ''
|
|
namespace: argocd
|
|
server: 'https://kubernetes.default.svc'
|
|
source:
|
|
path: k8s/argocd/overlays/{{ .Values.environment }}
|
|
repoURL: 'git@bitbucket.org:jamkazam/video-iac.git'
|
|
targetRevision: {{ .Values.gitBranch }}
|
|
project: default
|
|
# syncPolicy:
|
|
# automated:
|
|
# prune: true
|
|
# allowEmpty: false
|
|
# retry:
|
|
# limit: 5
|
|
# backoff:
|
|
# duration: 5s
|
|
# factor: 2
|
|
# maxDuration: 3m |