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