feat: add extraContainers argument to deployment (#465)

* add extraContainers argument

* Update Chart.yaml

* Update values.yaml

* Update deployment.yaml
This commit is contained in:
simonfr 2020-10-09 00:11:01 +02:00 committed by GitHub
parent 12b4764afa
commit 6cf32933ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 1 deletions

View file

@ -120,6 +120,9 @@ spec:
failureThreshold: {{ .Values.server.readinessProbe.failureThreshold }}
resources:
{{- toYaml .Values.server.resources | nindent 10 }}
{{- if .Values.server.extraContainers }}
{{- toYaml .Values.server.extraContainers | nindent 6 }}
{{- end }}
{{- if .Values.server.nodeSelector }}
nodeSelector:
{{- toYaml .Values.server.nodeSelector | nindent 8 }}