File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ their default values.
116
116
| ` extraEnvVars ` | Additional environment variables to the pod | ` [] ` |
117
117
| ` livenessProbe ` | Optional livenessProbe definition | ` nil ` |
118
118
| ` readinessProbe ` | Optional readinessProbe definition | ` nil ` |
119
+ | ` initContainers ` | Init containers to be created in the pod | ` [] ` |
119
120
120
121
Specify each parameter using the ` --set key=value[,key=value] ` argument to
121
122
` helm install ` .
Original file line number Diff line number Diff line change 48
48
securityContext :
49
49
fsGroup : {{ .Values.securityContext.fsGroup }}
50
50
runAsUser : {{ .Values.securityContext.runAsUser }}
51
+ {{- end }}
52
+ {{- with .Values.initContainers }}
53
+ initContainers :
54
+ {{- toYaml . | nindent 8 }}
51
55
{{- end }}
52
56
containers :
53
57
- name : {{ .Chart.Name }}
Original file line number Diff line number Diff line change @@ -223,3 +223,9 @@ extraEnvVars: []
223
223
# readinessProbe:
224
224
# tcpSocket:
225
225
# port: 5000
226
+
227
+ initContainers : []
228
+ # # Init containers to add to the Deployment
229
+ # - name: init
230
+ # image: busybox
231
+ # command: []
You can’t perform that action at this time.
0 commit comments