Skip to content

Commit ac8143f

Browse files
authored
feat: Add missing sidecar and global parameter for deployments & hooks (#1230)
1 parent def119d commit ac8143f

File tree

49 files changed

+383
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+383
-5
lines changed

charts/sentry/templates/hooks/sentry-db-check.job.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,20 @@ spec:
197197
securityContext:
198198
{{ toYaml .Values.hooks.dbCheck.containerSecurityContext | indent 10 }}
199199
{{- end }}
200-
{{- if .Values.hooks.dbCheck.volumes }}
200+
{{- if .Values.hooks.dbCheck.sidecars }}
201+
{{ toYaml .Values.hooks.dbCheck.sidecars | indent 6 }}
202+
{{- end }}
203+
{{- if .Values.global.sidecars }}
204+
{{ toYaml .Values.global.sidecars | indent 6 }}
205+
{{- end }}
206+
{{- if or .Values.hooks.dbCheck.volumes .Values.global.volumes }}
201207
volumes:
208+
{{- if .Values.hooks.dbCheck.volumes }}
202209
{{ toYaml .Values.hooks.dbCheck.volumes | indent 6 }}
210+
{{- end }}
211+
{{- if .Values.global.volumes }}
212+
{{ toYaml .Values.global.volumes | indent 6 }}
213+
{{- end }}
203214
{{- end }}
204215
{{- if .Values.hooks.shareProcessNamespace }}
205216
shareProcessNamespace: {{ .Values.hooks.shareProcessNamespace }}

charts/sentry/templates/hooks/sentry-db-init.job.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,19 @@ spec:
103103
{{- end }}
104104
{{- if .Values.hooks.dbInit.sidecars }}
105105
{{ toYaml .Values.hooks.dbInit.sidecars | indent 6 }}
106+
{{- end }}
107+
{{- if .Values.global.sidecars }}
108+
{{ toYaml .Values.global.sidecars | indent 6 }}
106109
{{- end }}
107110
volumes:
108111
- name: config
109112
configMap:
110113
name: {{ template "sentry.fullname" . }}-sentry
111114
{{- if .Values.hooks.dbInit.volumes }}
112115
{{ toYaml .Values.hooks.dbInit.volumes | indent 6 }}
116+
{{- end }}
117+
{{- if .Values.global.volumes }}
118+
{{ toYaml .Values.global.volumes | indent 6 }}
113119
{{- end }}
114120
{{- if .Values.hooks.shareProcessNamespace }}
115121
shareProcessNamespace: {{ .Values.hooks.shareProcessNamespace }}

charts/sentry/templates/hooks/snuba-db-init.job.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,22 @@ spec:
115115
{{- if .Values.hooks.snubaInit.containerSecurityContext }}
116116
securityContext:
117117
{{ toYaml .Values.hooks.snubaInit.containerSecurityContext | indent 10 }}
118+
{{- end }}
119+
{{- if .Values.hooks.snubaInit.sidecars }}
120+
{{ toYaml .Values.hooks.snubaInit.sidecars | indent 6 }}
121+
{{- end }}
122+
{{- if .Values.global.sidecars }}
123+
{{ toYaml .Values.global.sidecars | indent 6 }}
118124
{{- end }}
119125
volumes:
120126
- name: config
121127
configMap:
122128
name: {{ template "sentry.fullname" . }}-snuba
123129
{{- if .Values.hooks.snubaInit.volumes }}
124130
{{ toYaml .Values.hooks.snubaInit.volumes | indent 6 }}
131+
{{- end }}
132+
{{- if .Values.global.volumes }}
133+
{{ toYaml .Values.global.volumes | indent 6 }}
125134
{{- end }}
126135
{{- if .Values.hooks.shareProcessNamespace }}
127136
shareProcessNamespace: {{ .Values.hooks.shareProcessNamespace }}

charts/sentry/templates/hooks/snuba-migrate.job.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,22 @@ spec:
106106
{{- if .Values.hooks.snubaMigrate.containerSecurityContext }}
107107
securityContext:
108108
{{ toYaml .Values.hooks.snubaMigrate.containerSecurityContext | indent 10 }}
109+
{{- end }}
110+
{{- if .Values.hooks.snubaMigrate.sidecars }}
111+
{{ toYaml .Values.hooks.snubaMigrate.sidecars | indent 6 }}
112+
{{- end }}
113+
{{- if .Values.global.sidecars }}
114+
{{ toYaml .Values.global.sidecars | indent 6 }}
109115
{{- end }}
110116
volumes:
111117
- name: config
112118
configMap:
113119
name: {{ template "sentry.fullname" . }}-snuba
114120
{{- if .Values.hooks.snubaInit.volumes }}
115121
{{ toYaml .Values.hooks.snubaInit.volumes | indent 6 }}
122+
{{- end }}
123+
{{- if .Values.global.volumes }}
124+
{{ toYaml .Values.global.volumes | indent 6 }}
116125
{{- end }}
117126
{{- if .Values.hooks.shareProcessNamespace }}
118127
shareProcessNamespace: {{ .Values.hooks.shareProcessNamespace }}

charts/sentry/templates/hooks/user-create.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,22 @@ spec:
120120
{{- if .Values.hooks.dbInit.containerSecurityContext }}
121121
securityContext:
122122
{{ toYaml .Values.hooks.dbInit.containerSecurityContext | indent 10 }}
123+
{{- end }}
124+
{{- if .Values.hooks.dbInit.sidecars }}
125+
{{ toYaml .Values.hooks.dbInit.sidecars | indent 6 }}
126+
{{- end }}
127+
{{- if .Values.global.sidecars }}
128+
{{ toYaml .Values.global.sidecars | indent 6 }}
123129
{{- end }}
124130
volumes:
125131
- name: config
126132
configMap:
127133
name: {{ template "sentry.fullname" . }}-sentry
128134
{{- if .Values.hooks.dbInit.volumes }}
129135
{{ toYaml .Values.hooks.dbInit.volumes | indent 6 }}
136+
{{- end }}
137+
{{- if .Values.global.volumes }}
138+
{{ toYaml .Values.global.volumes | indent 6 }}
130139
{{- end }}
131140
{{- if .Values.hooks.shareProcessNamespace }}
132141
shareProcessNamespace: {{ .Values.hooks.shareProcessNamespace }}

charts/sentry/templates/relay/deployment-relay.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,9 @@ spec:
194194
{{- end }}
195195
{{- if .Values.relay.sidecars }}
196196
{{ toYaml .Values.relay.sidecars | indent 6 }}
197+
{{- end }}
198+
{{- if .Values.global.sidecars }}
199+
{{ toYaml .Values.global.sidecars | indent 6 }}
197200
{{- end }}
198201
{{- if .Values.serviceAccount.enabled }}
199202
serviceAccountName: {{ .Values.serviceAccount.name }}-relay
@@ -212,6 +215,9 @@ spec:
212215
{{- end }}
213216
{{- if .Values.relay.volumes }}
214217
{{ toYaml .Values.relay.volumes | indent 6 }}
218+
{{- end }}
219+
{{- if .Values.global.volumes }}
220+
{{ toYaml .Values.global.volumes | indent 6 }}
215221
{{- end }}
216222
{{- if .Values.relay.priorityClassName }}
217223
priorityClassName: "{{ .Values.relay.priorityClassName }}"

charts/sentry/templates/sentry/cleanup/cronjob-sentry-cleanup.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ spec:
111111
{{- end }}
112112
{{- if .Values.sentry.cleanup.sidecars }}
113113
{{ toYaml .Values.sentry.cleanup.sidecars | indent 10 }}
114+
{{- end }}
115+
{{- if .Values.global.sidecars }}
116+
{{ toYaml .Values.global.sidecars | indent 10 }}
114117
{{- end }}
115118
restartPolicy: Never
116119
volumes:
@@ -136,6 +139,9 @@ spec:
136139
{{ end }}
137140
{{- if .Values.sentry.cleanup.volumes }}
138141
{{ toYaml .Values.sentry.cleanup.volumes | indent 10 }}
142+
{{- end }}
143+
{{- if .Values.global.volumes }}
144+
{{ toYaml .Values.global.volumes | indent 10 }}
139145
{{- end }}
140146
{{- if .Values.sentry.cleanup.priorityClassName }}
141147
priorityClassName: "{{ .Values.sentry.cleanup.priorityClassName }}"

charts/sentry/templates/sentry/cron/deployment-sentry-cron.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ spec:
114114
{{- end }}
115115
{{- if .Values.sentry.cron.sidecars }}
116116
{{ toYaml .Values.sentry.cron.sidecars | indent 6 }}
117+
{{- end }}
118+
{{- if .Values.global.sidecars }}
119+
{{ toYaml .Values.global.sidecars | indent 6 }}
117120
{{- end }}
118121
{{- if .Values.serviceAccount.enabled }}
119122
serviceAccountName: {{ .Values.serviceAccount.name }}-cron
@@ -141,6 +144,9 @@ spec:
141144
{{ end }}
142145
{{- if .Values.sentry.cron.volumes }}
143146
{{ toYaml .Values.sentry.cron.volumes | indent 6 }}
147+
{{- end }}
148+
{{- if .Values.global.volumes }}
149+
{{ toYaml .Values.global.volumes | indent 6 }}
144150
{{- end }}
145151
{{- if .Values.sentry.cron.priorityClassName }}
146152
priorityClassName: "{{ .Values.sentry.cron.priorityClassName }}"

charts/sentry/templates/sentry/ingest/attachments/deployment-sentry-ingest-consumer-attachments.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,9 @@ spec:
161161
{{- end }}
162162
{{- if .Values.sentry.ingestConsumerAttachments.sidecars }}
163163
{{ toYaml .Values.sentry.ingestConsumerAttachments.sidecars | indent 6 }}
164+
{{- end }}
165+
{{- if .Values.global.sidecars }}
166+
{{ toYaml .Values.global.sidecars | indent 6 }}
164167
{{- end }}
165168
{{- if .Values.serviceAccount.enabled }}
166169
serviceAccountName: {{ .Values.serviceAccount.name }}-ingest-consumer-attachments
@@ -189,7 +192,10 @@ spec:
189192
{{- if .Values.sentry.ingestConsumerAttachments.volumes }}
190193
{{ toYaml .Values.sentry.ingestConsumerAttachments.volumes | indent 6 }}
191194
{{- end }}
192-
{{- if .Values.sentry.ingestConsumerAttachments.priorityClassName }}
193-
priorityClassName: "{{ .Values.sentry.ingestConsumerAttachments.priorityClassName }}"
195+
{{- if .Values.global.volumes }}
196+
{{ toYaml .Values.global.volumes | indent 6 }}
197+
{{- end }}
198+
{{- if .Values.sentry.ingestConsumerEvents.priorityClassName }}
199+
priorityClassName: "{{ .Values.sentry.ingestConsumerEvents.priorityClassName }}"
194200
{{- end }}
195201
{{- end }}

charts/sentry/templates/sentry/ingest/events/deployment-sentry-ingest-consumer-events.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,9 @@ spec:
161161
{{- end }}
162162
{{- if .Values.sentry.ingestConsumerEvents.sidecars }}
163163
{{ toYaml .Values.sentry.ingestConsumerEvents.sidecars | indent 6 }}
164+
{{- end }}
165+
{{- if .Values.global.sidecars }}
166+
{{ toYaml .Values.global.sidecars | indent 6 }}
164167
{{- end }}
165168
{{- if .Values.serviceAccount.enabled }}
166169
serviceAccountName: {{ .Values.serviceAccount.name }}-ingest-consumer-events
@@ -188,6 +191,9 @@ spec:
188191
{{ end }}
189192
{{- if .Values.sentry.ingestConsumerEvents.volumes }}
190193
{{ toYaml .Values.sentry.ingestConsumerEvents.volumes | indent 6 }}
194+
{{- end }}
195+
{{- if .Values.global.volumes }}
196+
{{ toYaml .Values.global.volumes | indent 6 }}
191197
{{- end }}
192198
{{- if .Values.sentry.ingestConsumerEvents.priorityClassName }}
193199
priorityClassName: "{{ .Values.sentry.ingestConsumerEvents.priorityClassName }}"

charts/sentry/templates/sentry/ingest/monitors/deployment-sentry-ingest-monitors.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,9 @@ spec:
140140
{{- end }}
141141
{{- if .Values.sentry.ingestMonitors.sidecars }}
142142
{{ toYaml .Values.sentry.ingestMonitors.sidecars | indent 6 }}
143+
{{- end }}
144+
{{- if .Values.global.sidecars }}
145+
{{ toYaml .Values.global.sidecars | indent 6 }}
143146
{{- end }}
144147
{{- if .Values.serviceAccount.enabled }}
145148
serviceAccountName: {{ .Values.serviceAccount.name }}-ingest-monitors
@@ -167,6 +170,9 @@ spec:
167170
{{ end }}
168171
{{- if .Values.sentry.ingestMonitors.volumes }}
169172
{{ toYaml .Values.sentry.ingestMonitors.volumes | indent 6 }}
173+
{{- end }}
174+
{{- if .Values.global.volumes }}
175+
{{ toYaml .Values.global.volumes | indent 6 }}
170176
{{- end }}
171177
{{- if .Values.sentry.ingestMonitors.priorityClassName }}
172178
priorityClassName: "{{ .Values.sentry.ingestMonitors.priorityClassName }}"

charts/sentry/templates/sentry/ingest/occurrences/deployment-sentry-ingest-occurrences.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,9 @@ spec:
140140
{{- end }}
141141
{{- if .Values.sentry.ingestOccurrences.sidecars }}
142142
{{ toYaml .Values.sentry.ingestOccurrences.sidecars | indent 6 }}
143+
{{- end }}
144+
{{- if .Values.global.sidecars }}
145+
{{ toYaml .Values.global.sidecars | indent 6 }}
143146
{{- end }}
144147
{{- if .Values.serviceAccount.enabled }}
145148
serviceAccountName: {{ .Values.serviceAccount.name }}-ingest-occurrences
@@ -167,6 +170,9 @@ spec:
167170
{{ end }}
168171
{{- if .Values.sentry.ingestOccurrences.volumes }}
169172
{{ toYaml .Values.sentry.ingestOccurrences.volumes | indent 6 }}
173+
{{- end }}
174+
{{- if .Values.global.volumes }}
175+
{{ toYaml .Values.global.volumes | indent 6 }}
170176
{{- end }}
171177
{{- if .Values.sentry.ingestOccurrences.priorityClassName }}
172178
priorityClassName: "{{ .Values.sentry.ingestOccurrences.priorityClassName }}"

charts/sentry/templates/sentry/ingest/profiles/deployment-sentry-ingest-profiles.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,9 @@ spec:
140140
{{- end }}
141141
{{- if .Values.sentry.ingestProfiles.sidecars }}
142142
{{ toYaml .Values.sentry.ingestProfiles.sidecars | indent 6 }}
143+
{{- end }}
144+
{{- if .Values.global.sidecars }}
145+
{{ toYaml .Values.global.sidecars | indent 6 }}
143146
{{- end }}
144147
{{- if .Values.serviceAccount.enabled }}
145148
serviceAccountName: {{ .Values.serviceAccount.name }}-ingest-profiles
@@ -167,6 +170,9 @@ spec:
167170
{{ end }}
168171
{{- if .Values.sentry.ingestProfiles.volumes }}
169172
{{ toYaml .Values.sentry.ingestProfiles.volumes | indent 6 }}
173+
{{- end }}
174+
{{- if .Values.global.volumes }}
175+
{{ toYaml .Values.global.volumes | indent 6 }}
170176
{{- end }}
171177
{{- if .Values.sentry.ingestProfiles.priorityClassName }}
172178
priorityClassName: "{{ .Values.sentry.ingestProfiles.priorityClassName }}"

charts/sentry/templates/sentry/ingest/replay-recordings/deployment-sentry-ingest-replay-recordings.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,9 @@ spec:
140140
{{- end }}
141141
{{- if .Values.sentry.ingestReplayRecordings.sidecars }}
142142
{{ toYaml .Values.sentry.ingestReplayRecordings.sidecars | indent 6 }}
143+
{{- end }}
144+
{{- if .Values.global.sidecars }}
145+
{{ toYaml .Values.global.sidecars | indent 6 }}
143146
{{- end }}
144147
{{- if .Values.serviceAccount.enabled }}
145148
serviceAccountName: {{ .Values.serviceAccount.name }}-ingest-replay-recordings
@@ -167,6 +170,9 @@ spec:
167170
{{ end }}
168171
{{- if .Values.sentry.ingestReplayRecordings.volumes }}
169172
{{ toYaml .Values.sentry.ingestReplayRecordings.volumes | indent 6 }}
173+
{{- end }}
174+
{{- if .Values.global.volumes }}
175+
{{ toYaml .Values.global.volumes | indent 6 }}
170176
{{- end }}
171177
{{- if .Values.sentry.ingestReplayRecordings.priorityClassName }}
172178
priorityClassName: "{{ .Values.sentry.ingestReplayRecordings.priorityClassName }}"

charts/sentry/templates/sentry/metrics/billing/deployment-sentry-billing-metrics-consumer.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ spec:
141141
{{- end }}
142142
{{- if .Values.sentry.billingMetricsConsumer.sidecars }}
143143
{{ toYaml .Values.sentry.billingMetricsConsumer.sidecars | indent 6 }}
144+
{{- end }}
145+
{{- if .Values.global.sidecars }}
146+
{{ toYaml .Values.global.sidecars | indent 6 }}
144147
{{- end }}
145148
{{- if .Values.serviceAccount.enabled }}
146149
serviceAccountName: {{ .Values.serviceAccount.name }}-billing-metrics-consumer
@@ -168,6 +171,9 @@ spec:
168171
{{ end }}
169172
{{- if .Values.sentry.billingMetricsConsumer.volumes }}
170173
{{ toYaml .Values.sentry.billingMetricsConsumer.volumes | indent 6 }}
174+
{{- end }}
175+
{{- if .Values.global.volumes }}
176+
{{ toYaml .Values.global.volumes | indent 6 }}
171177
{{- end }}
172178
{{- if .Values.sentry.billingMetricsConsumer.priorityClassName }}
173179
priorityClassName: "{{ .Values.sentry.billingMetricsConsumer.priorityClassName }}"

charts/sentry/templates/sentry/metrics/deployment-metrics.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,20 @@ spec:
111111
securityContext:
112112
{{ toYaml .Values.metrics.containerSecurityContext | indent 10 }}
113113
{{- end }}
114-
{{- if .Values.metrics.volumes }}
114+
{{- if .Values.metrics.sidecars }}
115+
{{ toYaml .Values.metrics.sidecars | indent 6 }}
116+
{{- end }}
117+
{{- if .Values.global.sidecars }}
118+
{{ toYaml .Values.global.sidecars | indent 6 }}
119+
{{- end }}
120+
{{- if or .Values.metrics.volumes .Values.global.volumes }}
115121
volumes:
122+
{{- if .Values.metrics.volumes }}
116123
{{ toYaml .Values.metrics.volumes | indent 6 }}
124+
{{- end }}
125+
{{- if .Values.global.volumes }}
126+
{{ toYaml .Values.global.volumes | indent 6 }}
127+
{{- end }}
117128
{{- end }}
118129

119130
{{- if .Values.serviceAccount.enabled }}

charts/sentry/templates/sentry/metrics/deployment-sentry-metrics-consumer.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,9 @@ spec:
151151
{{- end }}
152152
{{- if .Values.sentry.metricsConsumer.sidecars }}
153153
{{ toYaml .Values.sentry.metricsConsumer.sidecars | indent 6 }}
154+
{{- end }}
155+
{{- if .Values.global.sidecars }}
156+
{{ toYaml .Values.global.sidecars | indent 6 }}
154157
{{- end }}
155158
{{- if .Values.serviceAccount.enabled }}
156159
serviceAccountName: {{ .Values.serviceAccount.name }}-metrics-consumer
@@ -178,6 +181,9 @@ spec:
178181
{{ end }}
179182
{{- if .Values.sentry.metricsConsumer.volumes }}
180183
{{ toYaml .Values.sentry.metricsConsumer.volumes | indent 6 }}
184+
{{- end }}
185+
{{- if .Values.global.volumes }}
186+
{{ toYaml .Values.global.volumes | indent 6 }}
181187
{{- end }}
182188
{{- if .Values.sentry.metricsConsumer.priorityClassName }}
183189
priorityClassName: "{{ .Values.sentry.metricsConsumer.priorityClassName }}"

charts/sentry/templates/sentry/metrics/generic/deployment-sentry-generic-metrics-consumer.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,9 @@ spec:
151151
{{- end }}
152152
{{- if .Values.sentry.genericMetricsConsumer.sidecars }}
153153
{{ toYaml .Values.sentry.genericMetricsConsumer.sidecars | indent 6 }}
154+
{{- end }}
155+
{{- if .Values.global.sidecars }}
156+
{{ toYaml .Values.global.sidecars | indent 6 }}
154157
{{- end }}
155158
{{- if .Values.serviceAccount.enabled }}
156159
serviceAccountName: {{ .Values.serviceAccount.name }}-generic-metrics-consumer
@@ -178,6 +181,9 @@ spec:
178181
{{ end }}
179182
{{- if .Values.sentry.genericMetricsConsumer.volumes }}
180183
{{ toYaml .Values.sentry.genericMetricsConsumer.volumes | indent 6 }}
184+
{{- end }}
185+
{{- if .Values.global.volumes }}
186+
{{ toYaml .Values.global.volumes | indent 6 }}
181187
{{- end }}
182188
{{- if .Values.sentry.genericMetricsConsumer.priorityClassName }}
183189
priorityClassName: "{{ .Values.sentry.genericMetricsConsumer.priorityClassName }}"

charts/sentry/templates/sentry/post-process-forwarder/errors/deployment-sentry-post-process-forwarder-errors.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ spec:
138138
{{- end }}
139139
{{- if .Values.sentry.postProcessForwardErrors.sidecars }}
140140
{{ toYaml .Values.sentry.postProcessForwardErrors.sidecars | indent 6 }}
141+
{{- end }}
142+
{{- if .Values.global.sidecars }}
143+
{{ toYaml .Values.global.sidecars | indent 6 }}
141144
{{- end }}
142145
{{- if .Values.serviceAccount.enabled }}
143146
serviceAccountName: {{ .Values.serviceAccount.name }}-post-process-forwarder-errors
@@ -165,6 +168,9 @@ spec:
165168
{{ end }}
166169
{{- if .Values.sentry.postProcessForwardErrors.volumes }}
167170
{{ toYaml .Values.sentry.postProcessForwardErrors.volumes | indent 6 }}
171+
{{- end }}
172+
{{- if .Values.global.volumes }}
173+
{{ toYaml .Values.global.volumes | indent 6 }}
168174
{{- end }}
169175
{{- if .Values.sentry.postProcessForwardErrors.priorityClassName }}
170176
priorityClassName: "{{ .Values.sentry.postProcessForwardErrors.priorityClassName }}"

0 commit comments

Comments
 (0)