Created
November 25, 2025 18:26
-
-
Save quiiver/7974c6bcd12c13a901cc9efe2a7752e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git i/argo/k8s/argocd-bootstrap/templates/tenants/tenant-applicationsets.yaml w/argo/k8s/argocd-bootstrap/templates/tenants/tenant-applicationsets.yaml | |
| index 71ad7a40..4ad4c2c3 100644 | |
| --- i/argo/k8s/argocd-bootstrap/templates/tenants/tenant-applicationsets.yaml | |
| +++ w/argo/k8s/argocd-bootstrap/templates/tenants/tenant-applicationsets.yaml | |
| @@ -35,7 +35,7 @@ spec: | |
| generators: | |
| - git: | |
| repoURL: https://github.com/{{ $.Values.argo.cd.github.organization }}/global-platform-admin | |
| - revision: main | |
| + revision: {{ $.Values.argo.cd.github.revision | default "main" }} | |
| files: | |
| - path: "tenants/{{ $tenant.globals.app_code }}.yaml" | |
| - list: | |
| diff --git i/argo/k8s/argocd-bootstrap/values.yaml w/argo/k8s/argocd-bootstrap/values.yaml | |
| index ac8bb22e..2207481e 100644 | |
| --- i/argo/k8s/argocd-bootstrap/values.yaml | |
| +++ w/argo/k8s/argocd-bootstrap/values.yaml | |
| @@ -144,6 +144,7 @@ argo: | |
| cd: # This will allow ArgoCD to manage it's own installation after initial bootstrapping | |
| github: | |
| organization: 'mozilla' | |
| + revision: 'main' | |
| enabled: false | |
| syncPolicy: {} | |
| # List of Helm or Git repositories that can be used as a source in an ArgoCD Application |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment