Skip to content

Commit

Permalink
Merge pull request #16 from ekarlso/fix-containers
Browse files Browse the repository at this point in the history
fix: Add missing extraContainers
  • Loading branch information
Darach Ennis authored Oct 17, 2022
2 parents a580846 + d0e31cf commit 908b028
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/tremor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ appVersion: "1.0"
description: "Chart to deploy a tremor instance"
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/tremor/horizontal/color/tremor-horizontal-color.png
name: "tremor"
version: "0.2.0"
version: "0.2.1"
maintainers:
- name: tremor-rs
3 changes: 3 additions & 0 deletions charts/tremor/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ spec:
resources:
{{ toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.extraContainers }}
{{ toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.extraInitContainers }}
initContainers:
{{ toYaml . | nindent 8}}
Expand Down
3 changes: 3 additions & 0 deletions charts/tremor/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ spec:
{{- with .Values.extraVolumeMounts }}
{{ toYaml . | nindent 12}}
{{- end }}
{{- with .Values.extraContainers }}
{{ toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.extraInitContainers }}
initContainers:
{{ toYaml . | nindent 8}}
Expand Down

0 comments on commit 908b028

Please sign in to comment.