From 99fce1366b344e6efd8cb4c0264da9d7fe8ec3ef Mon Sep 17 00:00:00 2001 From: Maarten de Waard <maarten@greenhost.nl> Date: Fri, 18 Dec 2020 11:42:03 +0100 Subject: [PATCH] update install.sh.example to accept extra command line arguments --- install.sh.example | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install.sh.example b/install.sh.example index 14a6b50..3f2b4ff 100644 --- a/install.sh.example +++ b/install.sh.example @@ -7,9 +7,12 @@ # Edit the `releaseName` variable below if you want to release several # production sites. +# Additional parameters can be provided to the script and will be forwarded to +# the `helm` command. + set -v releaseName="wordpress-production" # Upgrade or install application using the current git branch as docker tag -helm upgrade $releaseName . --install -f values-local.yaml +helm upgrade $releaseName . --install -f values-local.yaml "$@" -- GitLab