Skip to content

Commit 1e23919

Browse files
author
Ronen Hilewicz
authored
Merge pull request #44 from open-ch/sidecar
Add support for extra-containers
2 parents 20f7dfb + c6f24e8 commit 1e23919

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

charts/topaz/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ spec:
4444
securityContext:
4545
{{- toYaml .Values.podSecurityContext | nindent 8 }}
4646
containers:
47+
{{- if .Values.extraContainers }}
48+
{{- toYaml .Values.extraContainers | nindent 8 }}
49+
{{- end }}
4750
- name: {{ .Chart.Name }}
4851
securityContext:
4952
{{- toYaml .Values.securityContext | nindent 12 }}

charts/topaz/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,9 @@ volumeMounts: []
442442
# mountPath: "/etc/foo"
443443
# readOnly: true
444444

445+
extraContainers: []
446+
# extraContainers allows you to add any sidecar containers you wish.
447+
445448
nodeSelector: {}
446449

447450
tolerations: []

0 commit comments

Comments
 (0)