Skip to content

Commit

Permalink
staging: argocd ui deployment (#1744)
Browse files Browse the repository at this point in the history
* staging: uninstall ui release

* staging: install argo app-of-apps

* disable argo prune setting
  • Loading branch information
deer-wmde authored Aug 20, 2024
1 parent 7a9c475 commit 8da5099
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/argocd-apps/templates/wbaas-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ spec:
automated:
# disable self-healing for local env so we can use skaffold
selfHeal: {{- if eq .Values.environment "local" }} false {{ else }} true {{ end}}
prune: true
prune: false
2 changes: 1 addition & 1 deletion charts/argocd-config/templates/app-of-apps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ spec:
{{ toYaml .Values | indent 8 }}
syncPolicy:
automated:
prune: true
prune: false
selfHeal: true
4 changes: 2 additions & 2 deletions k8s/helmfile/helmfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ releases:
- name: argocd-config
namespace: argocd
chart: ../../charts/argocd-config
installed: {{ eq .Environment.Name "local" | toYaml }}
installed: {{ ne .Environment.Name "production" | toYaml }}
<<: *default_release

- name: redirects
Expand Down Expand Up @@ -165,7 +165,7 @@ releases:
<<: *default_release

- name: ui
installed: {{ ne .Environment.Name "local" | toYaml }}
installed: {{ eq .Environment.Name "production" | toYaml }}
namespace: default
chart: wbstack/ui
version: 0.3.1
Expand Down

0 comments on commit 8da5099

Please sign in to comment.