Skip to content

Commit 3463781

Browse files
authored
feat: add imagePullSecrets option to the metrics deployment (#1722)
1 parent 8c5fc21 commit 3463781

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

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

+4
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ spec:
6060
{{- if .Values.dnsConfig }}
6161
dnsConfig:
6262
{{ toYaml .Values.dnsConfig | indent 8 }}
63+
{{- end }}
64+
{{- if .Values.metrics.image.imagePullSecrets }}
65+
imagePullSecrets:
66+
{{ toYaml .Values.metrics.image.imagePullSecrets | indent 8 }}
6367
{{- end }}
6468
{{- if .Values.metrics.securityContext }}
6569
securityContext:

charts/sentry/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -2531,6 +2531,7 @@ metrics:
25312531
repository: prom/statsd-exporter
25322532
tag: v0.17.0
25332533
pullPolicy: IfNotPresent
2534+
imagePullSecrets: []
25342535

25352536
# Enable this if you're using https://github.com/coreos/prometheus-operator
25362537
serviceMonitor:

0 commit comments

Comments
 (0)