Skip to content

Commit

Permalink
fix: suppress helm secrets in actions output (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
epowers-isp authored Jul 15, 2021
1 parent 4248f98 commit d85a5d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions helmfile-actions/apply.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash

function helmfileApply {
# suppress secrets in workflows #incident-150567
output=$(helmfile --no-color apply --suppress-secrets ${*} 2>&1)
exitCode=$?

Expand Down
1 change: 1 addition & 0 deletions helmfile-actions/diff.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash

function helmfileDiff {
# suppress secrets in workflows #incident-150567
output=$(helmfile --no-color diff --detailed-exitcode --suppress-secrets ${*} 2>&1)
exitCode=$?
hasChanges=false
Expand Down

0 comments on commit d85a5d6

Please sign in to comment.