File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 11apiVersion : v1
22description : A declarative helm chart for deploying common types of services on Kubernetes
33name : monochart
4- version : 0.12 .0
5- appVersion : 0.12 .0
4+ version : 0.13 .0
5+ appVersion : 0.13 .0
66home : https://github.com/cloudposse/charts/tree/master/incubator/monochart
77icon : https://raw.githubusercontent.com/cloudposse/charts/master/incubator/monochart/logo.png
88maintainers :
Original file line number Diff line number Diff line change @@ -49,12 +49,14 @@ spec:
4949 image : {{ required "image.repository is required!" .Values.image.repository }}:{{ required "image.tag is required!" .Values.image.tag }}
5050 imagePullPolicy : {{ .Values.image.pullPolicy }}
5151{{ include "monochart.env" . | indent 8 }}
52- {{- if .Values.deployment.pod.command }}
53- command : {{ toYaml .Values.deployment.pod.command }}
54- {{- end }}
55- {{- if .Values.deployment.pod.args }}
56- args : {{ toYaml .Values.deployment.pod.args }}
57- {{- end }}
52+ {{- with .Values.deployment.pod.command }}
53+ command :
54+ {{ toYaml . | indent 10 }}
55+ {{- end }}
56+ {{- with .Values.deployment.pod.args }}
57+ args :
58+ {{ toYaml . | indent 10 }}
59+ {{- end }}
5860{{- with .Values.deployment.pod.securityContext }}
5961 securityContext :
6062{{ toYaml . | indent 10 }}
You can’t perform that action at this time.
0 commit comments