Use branch instead of HEAD for argo

This commit is contained in:
Seth Call 2025-07-19 20:45:38 -05:00
parent 101a25bd37
commit 2895a90a78
9 changed files with 10 additions and 9 deletions

View File

@ -10,7 +10,7 @@ spec:
source:
path: k8s/argocd/overlays/{{ .Values.environment }}
repoURL: 'git@bitbucket.org:jamkazam/video-iac.git'
targetRevision: HEAD
targetRevision: {{ .Values.gitBranch }}
project: default
# syncPolicy:
# automated:

View File

@ -10,7 +10,7 @@ spec:
source:
path: k8s/cert-manager
repoURL: 'git@bitbucket.org:jamkazam/video-iac.git'
targetRevision: HEAD
targetRevision: {{ .Values.gitBranch }}
project: default
syncPolicy:
automated:

View File

@ -13,7 +13,7 @@ spec:
- values-{{ .Values.environment }}.yaml
path: k8s/coturn-dns
repoURL: 'git@bitbucket.org:jamkazam/video-iac.git'
targetRevision: HEAD
targetRevision: {{ .Values.gitBranch }}
project: default
syncPolicy:
syncOptions:

View File

@ -10,7 +10,7 @@ spec:
source:
path: k8s/coturn
repoURL: 'git@bitbucket.org:jamkazam/video-iac.git'
targetRevision: HEAD
targetRevision: {{ .Values.gitBranch }}
project: default
syncPolicy:
syncOptions:

View File

@ -10,7 +10,7 @@ spec:
source:
path: k8s/external-dns/overlays/{{ .Values.environment }}
repoURL: 'git@bitbucket.org:jamkazam/video-iac.git'
targetRevision: HEAD
targetRevision: {{ .Values.gitBranch }}
project: default
syncPolicy:
syncOptions:

View File

@ -12,7 +12,7 @@ spec:
- values-{{ .Values.environment }}.yaml
path: k8s/monitoring
repoURL: 'git@bitbucket.org:jamkazam/video-iac.git'
targetRevision: HEAD
targetRevision: {{ .Values.gitBranch }}
project: default
syncPolicy:
syncOptions:

View File

@ -13,7 +13,7 @@ spec:
- values-{{ .Values.environment }}.yaml
path: k8s/webrtc-be
repoURL: 'git@bitbucket.org:jamkazam/video-iac.git'
targetRevision: HEAD
targetRevision: {{ .Values.gitBranch }}
project: default
# syncPolicy:
# syncOptions:

View File

@ -1 +1,2 @@
environment: "production"
gitBranch: "main"

View File

@ -1,2 +1,2 @@
environment: "staging"
gitBranch: "develop"