We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20f7dfb + c6f24e8 commit 1e23919Copy full SHA for 1e23919
2 files changed
charts/topaz/templates/deployment.yaml
@@ -44,6 +44,9 @@ spec:
44
securityContext:
45
{{- toYaml .Values.podSecurityContext | nindent 8 }}
46
containers:
47
+ {{- if .Values.extraContainers }}
48
+ {{- toYaml .Values.extraContainers | nindent 8 }}
49
+ {{- end }}
50
- name: {{ .Chart.Name }}
51
52
{{- toYaml .Values.securityContext | nindent 12 }}
charts/topaz/values.yaml
@@ -442,6 +442,9 @@ volumeMounts: []
442
# mountPath: "/etc/foo"
443
# readOnly: true
444
445
+extraContainers: []
446
+# extraContainers allows you to add any sidecar containers you wish.
447
+
448
nodeSelector: {}
449
450
tolerations: []
0 commit comments