Skip to content

Commit

Permalink
suppressing helmfile secrets (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoganorikasa authored Jul 15, 2021
1 parent d724b82 commit 4248f98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helmfile-actions/apply.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

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

if [ ${exitCode} -eq 0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion helmfile-actions/diff.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

function helmfileDiff {
output=$(helmfile --no-color diff --detailed-exitcode ${*} 2>&1)
output=$(helmfile --no-color diff --detailed-exitcode --suppress-secrets ${*} 2>&1)
exitCode=$?
hasChanges=false
commentStatus="Failed"
Expand Down

0 comments on commit 4248f98

Please sign in to comment.