Add support for defining arguments

This commit is contained in:
Waqar Ahmed 2020-09-28 19:20:36 +05:00
parent 1059fec24d
commit 9e3834c541
2 changed files with 7 additions and 0 deletions

View File

@ -25,3 +25,9 @@ spec:
- {{ . | quote}} - {{ . | quote}}
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- if .Values.container.args }}
args:
{{- range .Values.container.args }}
- {{ . | quote}}
{{- end }}
{{- end }}

View File

@ -17,3 +17,4 @@ fullnameOverride: ""
# Container CMD / entrypoint # Container CMD / entrypoint
container: container:
command: [] command: []
args: []