feat: updated awx-operator/awx

- extracted argocd revision into variable
- on dev stage revision is main
- default revision is <stage> (qa, prodnso, ...)
master
Sven Ketelsen 4 years ago
parent 30c2e8f45a
commit 9d5105f764

@ -0,0 +1,7 @@
---
awx_operator_revision: "main"
awx_smardigo_revision: "main"
jaeger_operator_revision: "main"
jaeger_smardigo_revision: "main"

@ -172,9 +172,9 @@ k8s_argocd_helm__release_values:
server: https://kubernetes.default.svc server: https://kubernetes.default.svc
project: infrastructure project: infrastructure
source: source:
path: apps/{{ stage }}/awx-operator path: config/default
repoURL: https://{{ shared_service_gitea_hostname }}/gitea-admin/argocd.git repoURL: https://{{ shared_service_gitea_hostname }}/argocd/awx-operator.git
targetRevision: main targetRevision: '{{ awx_operator_revision | default(stage) }}'
syncPolicy: syncPolicy:
automated: automated:
prune: true prune: true
@ -190,8 +190,8 @@ k8s_argocd_helm__release_values:
project: infrastructure project: infrastructure
source: source:
path: apps/{{ stage }}/awx path: apps/{{ stage }}/awx
repoURL: https://{{ shared_service_gitea_hostname }}/gitea-admin/argocd.git repoURL: https://{{ shared_service_gitea_hostname }}/argocd/argocd.git
targetRevision: main targetRevision: '{{ awx_smardigo_revision | default(stage) }}'
syncPolicy: syncPolicy:
automated: automated:
prune: true prune: true
@ -207,8 +207,8 @@ k8s_argocd_helm__release_values:
project: infrastructure project: infrastructure
source: source:
path: config/default path: config/default
repoURL: https://{{ shared_service_gitea_hostname }}/gitea-admin/jaeger-operator.git repoURL: https://{{ shared_service_gitea_hostname }}/argocd/jaeger-operator.git
targetRevision: v1.31.0 targetRevision: '{{ jaeger_operator_revision | default(stage) }}'
syncPolicy: syncPolicy:
automated: automated:
prune: true prune: true
@ -224,8 +224,8 @@ k8s_argocd_helm__release_values:
project: infrastructure project: infrastructure
source: source:
path: apps/{{ stage }}/jaeger path: apps/{{ stage }}/jaeger
repoURL: https://{{ shared_service_gitea_hostname }}/gitea-admin/argocd.git repoURL: https://{{ shared_service_gitea_hostname }}/argocd/argocd.git
targetRevision: HEAD targetRevision: '{{ jaeger_smardigo_revision | default(stage) }}'
syncPolicy: syncPolicy:
automated: automated:
prune: true prune: true

Loading…
Cancel
Save