From 7684278f8bc436020c9eecf0b88cba717004c02d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mil=C3=A1n=20Figueredo?= Date: Tue, 9 Jul 2019 17:49:53 +0200 Subject: [PATCH] Fixed --docker-password parameter handling and a typo in --docker-username at usage() --- k8s/helm/deploy-all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/helm/deploy-all.sh b/k8s/helm/deploy-all.sh index 705b172f5..cea7289e1 100755 --- a/k8s/helm/deploy-all.sh +++ b/k8s/helm/deploy-all.sh @@ -37,7 +37,7 @@ Parameters: This is useful for production environments where infrastructure is hosted outside the Kubernetes cluster. -t | --tag The tag used for the newly created docker images. Default: newly created, date-based timestamp, with 1-minute resolution. - -u | --docker-user + -u | --docker-username The Docker username used to logon to the custom registry, supplied using the -r parameter. --use-local-k8s Deploy to a locally installed Kubernetes (default: false). @@ -86,7 +86,7 @@ while [[ $# -gt 0 ]]; do -n | --app-name ) app_name="$2"; shift 2;; -p | --docker-password ) - docker_password="$2"; shift;; + docker_password="$2"; shift 2;; -r | --registry ) container_registry="$2"; shift 2;; --skip-clean )