Skip to content

Commit

Permalink
Merge pull request #48 from marosset/dry-run-fixes
Browse files Browse the repository at this point in the history
ci: replacing --dry-run with --dry-run=client for kubectl commands
  • Loading branch information
k8s-ci-robot committed Nov 1, 2021
2 parents 93d18ad + 148d755 commit 9fa8e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admission-webhook/deploy/.helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ echo_or_run() {
if $DRY_RUN; then
echo "$@"
if $WITH_KUBECTL_DRY_RUN; then
eval "$@ --dry-run >&2"
eval "$@ --dry-run=client >&2"
fi
else
eval "$@"
Expand Down

0 comments on commit 9fa8e91

Please sign in to comment.