Skip to content

Commit

Permalink
revert: skip-cleanup not working as expected, drone re-enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurice Faber committed Nov 13, 2020
1 parent ad5ffdf commit 561b235
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/otomi
Original file line number Diff line number Diff line change
Expand Up @@ -305,13 +305,13 @@ function execute() {
sync)
validate_cluster_env
set -o pipefail
drun helmfile -e $CLOUD-$CLUSTER $@ sync --skip-cleanup --skip-deps | grep -Ev $helmfileOutputHide
drun helmfile -e $CLOUD-$CLUSTER $@ sync --skip-deps | grep -Ev $helmfileOutputHide
;;
template)
check_kube_context=0
validate_cluster_env
set -o pipefail
drun helmfile -e $CLOUD-$CLUSTER --skip-cleanup --quiet $@ template --skip-deps | grep -Ev $helmfileOutputHide
drun helmfile -e $CLOUD-$CLUSTER --quiet $@ template --skip-deps | grep -Ev $helmfileOutputHide
;;
rotate-keys)
check_sops_file
Expand Down
4 changes: 2 additions & 2 deletions helmfile.d/helmfile-30.admin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ bases:

releases:
- name: drone
installed: {{ $c | get "drone.enabled" false }}
installed: {{ $c | get "drone.enabled" true }}
namespace: team-admin
<<: *default
- name: drone-admit-members
installed: {{ and ($c | get "drone.enabled" false) (eq ($c | get "drone.sourceControl.provider") "github") }}
installed: {{ and ($c | get "drone.enabled" true) (eq ($c | get "drone.sourceControl.provider") "github") }}
namespace: team-admin
chart: ../charts/drone-admit-members
values:
Expand Down

0 comments on commit 561b235

Please sign in to comment.