Add support for defining arguments
This commit is contained in:
parent
1059fec24d
commit
9e3834c541
|
@ -25,3 +25,9 @@ spec:
|
|||
- {{ . | quote}}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if .Values.container.args }}
|
||||
args:
|
||||
{{- range .Values.container.args }}
|
||||
- {{ . | quote}}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
|
|
@ -17,3 +17,4 @@ fullnameOverride: ""
|
|||
# Container CMD / entrypoint
|
||||
container:
|
||||
command: []
|
||||
args: []
|
||||
|
|
Loading…
Reference in New Issue