Skip to content
Snippets Groups Projects

More options for setting/overriding values

Merged Sebastian Kehr requested to merge kese/deployer:value_arguments into master
Compare and Show latest version
2 files
+ 3
2
Preferences
Compare changes
Files
2
+ 2
2
@@ -28,7 +28,7 @@ if [[ ${PIPESTATUS[0]} -ne 4 ]]; then
fi
OPTIONS=
LONGOPTS=docker-config:,tag:,build-arg:,values:,set:,set-string:,:set-file,charts:,name:,token:,certificate-authority:,namespace:,cluster-url:,service-account:,output:,input:
LONGOPTS=docker-config:,tag:,build-arg:,values:,set:,set-string:,charts:,name:,token:,certificate-authority:,namespace:,cluster-url:,service-account:,output:,input:
# -use ! and PIPESTATUS to get exit code with errexit set
# -temporarily store output to be able to check for errors
@@ -58,7 +58,7 @@ while true; do
buildargs="${buildargs} $2"
shift 2
;;
-f|--values|-s|--set|--set-string|--set-file)
-f|--values|-s|--set|--set-string)
valueargs="${valueargs} $1 $2"
shift 2
;;