Skip to content

Commit c10cf15

Browse files
authored
[kube-prometheus-stack] Fix TLS condition scope (#5333)
Signed-off-by: Sam McBroom <sam.mcbroom@appian.com>
1 parent 2ca2dfa commit c10cf15

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

charts/kube-prometheus-stack/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ name: kube-prometheus-stack
3131
sources:
3232
- https://github.com/prometheus-community/helm-charts
3333
- https://github.com/prometheus-operator/kube-prometheus
34-
version: 69.3.1
34+
version: 69.3.2
3535
appVersion: v0.80.0
3636
kubeVersion: ">=1.19.0-0"
3737
home: https://github.com/prometheus-operator/kube-prometheus

charts/kube-prometheus-stack/templates/prometheus-operator/deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,14 @@ spec:
143143
- --web.key-file=/cert/{{ if .Values.prometheusOperator.admissionWebhooks.certManager.enabled }}tls.key{{ else }}key{{ end }}
144144
- --web.listen-address=:{{ .Values.prometheusOperator.tls.internalPort }}
145145
- --web.tls-min-version={{ .Values.prometheusOperator.tls.tlsMinVersion }}
146+
{{- end }}
146147
{{- with .Values.prometheusOperator.extraArgs }}
147148
{{- tpl (toYaml .) $ | nindent 12 }}
148149
{{- end }}
149150
{{- with .Values.prometheusOperator.lifecycle }}
150151
lifecycle: {{ toYaml . | nindent 12 }}
151152
{{- end }}
153+
{{- if .Values.prometheusOperator.tls.enabled }}
152154
ports:
153155
- containerPort: {{ .Values.prometheusOperator.tls.internalPort }}
154156
name: https

0 commit comments

Comments
 (0)