Skip to content

Commit

Permalink
Feat: Add missing sidecar and global parameter for deployments after …
Browse files Browse the repository at this point in the history
…update to version 24.5.0
  • Loading branch information
dromadaire54 committed May 30, 2024
1 parent c231c30 commit 96b935d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sentry/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: sentry
description: A Helm chart for Kubernetes
type: application
version: 23.1.0
version: 23.1.1
appVersion: 24.5.0
dependencies:
- name: memcached
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,12 @@ spec:
{{- if .Values.snuba.groupAttributesConsumer.containerSecurityContext }}
securityContext:
{{ toYaml .Values.snuba.groupAttributesConsumer.containerSecurityContext | indent 12 }}
{{- end }}
{{- if .Values.snuba.groupAttributesConsumer.sidecars }}
{{ toYaml .Values.snuba.groupAttributesConsumer.sidecars | indent 6 }}
{{- end }}
{{- if .Values.global.sidecars }}
{{ toYaml .Values.global.sidecars | indent 6 }}
{{- end }}
{{- if .Values.serviceAccount.enabled }}
serviceAccountName: {{ .Values.serviceAccount.name }}-snuba
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,12 @@ spec:
{{- if .Values.snuba.outcomesBillingConsumer.containerSecurityContext }}
securityContext:
{{ toYaml .Values.snuba.outcomesBillingConsumer.containerSecurityContext | indent 12 }}
{{- end }}
{{- if .Values.snuba.outcomesBillingConsumer.sidecars }}
{{ toYaml .Values.snuba.outcomesBillingConsumer.sidecars | indent 6 }}
{{- end }}
{{- if .Values.global.sidecars }}
{{ toYaml .Values.global.sidecars | indent 6 }}
{{- end }}
{{- if .Values.serviceAccount.enabled }}
serviceAccountName: {{ .Values.serviceAccount.name }}-snuba
Expand Down
6 changes: 6 additions & 0 deletions sentry/templates/deployment-snuba-spans-consumer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,12 @@ spec:
{{- if .Values.snuba.spansConsumer.containerSecurityContext }}
securityContext:
{{ toYaml .Values.snuba.spansConsumer.containerSecurityContext | indent 12 }}
{{- end }}
{{- if .Values.snuba.spansConsumer.sidecars }}
{{ toYaml .Values.snuba.spansConsumer.sidecars | indent 6 }}
{{- end }}
{{- if .Values.global.sidecars }}
{{ toYaml .Values.global.sidecars | indent 6 }}
{{- end }}
{{- if .Values.serviceAccount.enabled }}
serviceAccountName: {{ .Values.serviceAccount.name }}-snuba
Expand Down

0 comments on commit 96b935d

Please sign in to comment.