Skip to content
Snippets Groups Projects
Commit c93fd917b062 authored by Xavier Garnier's avatar Xavier Garnier :bicyclist:
Browse files

feat: add args and command

parent 658bdbf53e18
No related branches found
No related tags found
1 merge request!4args and command
......@@ -27,6 +27,14 @@
- image: {{ .Values.image.repo }}:{{ .Values.image.tag }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
name: {{ .Values.appName }}
{{- with .Values.command }}
command:
{{- . | toYaml | nindent 12 }}
{{- end }}
{{- with .Values.args }}
args:
{{- . | toYaml | nindent 12 }}
{{- end }}
{{- with .Values.env }}
env:
{{- range $name,$value := . }}
......
......@@ -24,6 +24,12 @@
tag: latest
pullPolicy: Always
# override container command
# command: []
# override container args
# args: []
# Environment variable to configure app
env: {}
# NAME: VALUE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment