Skip to content

Commit

Permalink
Remove -r for dry-run to use it as full name parameter
Browse files Browse the repository at this point in the history
Signed-off-by: cmoulliard <cmoulliard@redhat.com>
  • Loading branch information
cmoulliard committed Oct 2, 2024
1 parent c6b76f9 commit 1316ff3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/provision-namespace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function usage() {
echo " -o, --quay-org <quay_organization> The Quay registry organization hosting your images on quay.io (mandatory)"
echo " -d, --docker-cred <docker_username:docker_password> The docker registry credential: username:password on dockerhub (mandatory)"
echo " -k, --key-path <public_key_path> The path of your public to ssh to the VM (optional)"
echo " -r, --dry-run Run the kubectl command with dry-run=client"
echo " --dry-run Run the kubectl command with dry-run=client"
exit 1
}

Expand All @@ -83,7 +83,7 @@ while [[ $# -gt 0 ]]; do
PUBLIC_KEY_PASS=$2
shift 2
;;
-r|--dry-run)
--dry-run)
DRY_RUN=true
shift
;;
Expand Down

0 comments on commit 1316ff3

Please sign in to comment.