File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ Following inputs can be used as `step.with` keys
49
49
| ` username ` | String | Chart repository username where to locate the requested chart. |
50
50
| ` password ` | String | Chart repository password where to locate the requested chart. |
51
51
| ` use-secrets-vals ` | Boolean | Use secrets plugin using vals to evaluate the secrets |
52
+ | ` helm-extra-args ` | String | Append any string containing any extra option that might escape the ones present in this action. |
52
53
53
54
## Example 1 - local repo chart
54
55
Original file line number Diff line number Diff line change @@ -92,6 +92,9 @@ inputs:
92
92
use-secrets-vals :
93
93
description : ' Uses the secrets with vals backend to apply the chart'
94
94
required : false
95
+ helm-extra-args :
96
+ description : ' Append any string containing any extra option that might escape the ones present in this action.'
97
+ required : false
95
98
runs :
96
99
using : ' docker'
97
100
image : ' Dockerfile'
@@ -123,3 +126,4 @@ runs:
123
126
REPO_PASSWORD : ${{ inputs.password }}
124
127
VERSION : ${{ inputs.version }}
125
128
USE_SECRETS_VALS : ${{ inputs.use-secrets-vals }}
129
+ HELM_EXTRA_ARGS : ${{ inputs.extra-args }}
Original file line number Diff line number Diff line change @@ -199,5 +199,5 @@ if [ "${HELM_ACTION}" == "install" ]; then
199
199
HELM_COMMAND=" ${HELM_COMMAND} ${DEPLOY_CHART_PATH} "
200
200
fi
201
201
202
- echo " Executing: ${HELM_COMMAND} "
203
- ${HELM_COMMAND}
202
+ echo " Executing: ${HELM_COMMAND} ${HELM_EXTRA_ARGS} "
203
+ ${HELM_COMMAND} ${HELM_EXTRA_ARGS}
You can’t perform that action at this time.
0 commit comments