Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 7684278

Browse files
committed
Fixed --docker-password parameter handling and a typo in --docker-username at usage()
1 parent fd1fa22 commit 7684278

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

k8s/helm/deploy-all.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Parameters:
3737
This is useful for production environments where infrastructure is hosted outside the Kubernetes cluster.
3838
-t | --tag <docker image tag>
3939
The tag used for the newly created docker images. Default: newly created, date-based timestamp, with 1-minute resolution.
40-
-u | --docker-user <docker username>
40+
-u | --docker-username <docker username>
4141
The Docker username used to logon to the custom registry, supplied using the -r parameter.
4242
--use-local-k8s
4343
Deploy to a locally installed Kubernetes (default: false).
@@ -86,7 +86,7 @@ while [[ $# -gt 0 ]]; do
8686
-n | --app-name )
8787
app_name="$2"; shift 2;;
8888
-p | --docker-password )
89-
docker_password="$2"; shift;;
89+
docker_password="$2"; shift 2;;
9090
-r | --registry )
9191
container_registry="$2"; shift 2;;
9292
--skip-clean )

0 commit comments

Comments
 (0)