Skip to content

Commit

Permalink
Fix admission webhook flag (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha authored Feb 28, 2018
1 parent c699a23 commit cb0af4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/deploy/kubedb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ while test $# -gt 0; do
--enable-admission-webhook*)
val=`echo $1 | sed -e 's/^[^=]*=//g'`
if [ "$val" = "false" ]; then
export VOYAGER_ENABLE_ADMISSION_WEBHOOK=false
export KUBEDB_ENABLE_ADMISSION_WEBHOOK=false
else
export VOYAGER_ENABLE_ADMISSION_WEBHOOK=true
export KUBEDB_ENABLE_ADMISSION_WEBHOOK=true
fi
shift
;;
Expand Down

0 comments on commit cb0af4c

Please sign in to comment.