File tree Expand file tree Collapse file tree 4 files changed +15
-1
lines changed
charts/kube-prometheus-stack Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ name: kube-prometheus-stack
31
31
sources :
32
32
- https://github.com/prometheus-community/helm-charts
33
33
- https://github.com/prometheus-operator/kube-prometheus
34
- version : 75.17.1
34
+ version : 75.18.0
35
35
# renovate: github=prometheus-operator/prometheus-operator
36
36
appVersion : v0.83.0
37
37
kubeVersion : " >=1.25.0-0"
Original file line number Diff line number Diff line change @@ -104,6 +104,9 @@ spec:
104
104
dnsConfig :
105
105
{{ toYaml .Values.alertmanager.alertmanagerSpec.dnsConfig | indent 4 }}
106
106
{{- end }}
107
+ {{- if .Values.alertmanager.alertmanagerSpec.dnsPolicy }}
108
+ dnsPolicy : {{ .Values.alertmanager.alertmanagerSpec.dnsPolicy }}
109
+ {{- end }}
107
110
{{- if .Values.alertmanager.alertmanagerSpec.storage }}
108
111
storage :
109
112
{{ tpl (toYaml .Values.alertmanager.alertmanagerSpec.storage | indent 4) . }}
Original file line number Diff line number Diff line change @@ -257,6 +257,9 @@ spec:
257
257
dnsConfig :
258
258
{{ toYaml .Values.prometheus.prometheusSpec.dnsConfig | indent 4 }}
259
259
{{- end }}
260
+ {{- if .Values.prometheus.prometheusSpec.dnsPolicy }}
261
+ dnsPolicy : {{ .Values.prometheus.prometheusSpec.dnsPolicy }}
262
+ {{- end }}
260
263
{{- if not .Values.prometheus.agentMode }}
261
264
{{- if .Values.prometheus.prometheusSpec.ruleNamespaceSelector }}
262
265
ruleNamespaceSelector :
Original file line number Diff line number Diff line change @@ -1123,6 +1123,10 @@ alertmanager:
1123
1123
# # ref: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api-reference/api.md#monitoring.coreos.com/v1.PodDNSConfig
1124
1124
dnsConfig : {}
1125
1125
1126
+ # # DNS policy for Alertmanager.
1127
+ # # ref: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api-reference/api.md#dnspolicystring-alias
1128
+ dnsPolicy : " "
1129
+
1126
1130
# # ListenLocal makes the Alertmanager server listen on loopback, so that it does not bind against the Pod IP.
1127
1131
# # Note this is only for the Alertmanager UI, not the gossip communication.
1128
1132
# #
@@ -4470,6 +4474,10 @@ prometheus:
4470
4474
# # ref: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api-reference/api.md#monitoring.coreos.com/v1.PodDNSConfig
4471
4475
dnsConfig : {}
4472
4476
4477
+ # # DNS policy for Prometheus.
4478
+ # # ref: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api-reference/api.md#dnspolicystring-alias
4479
+ dnsPolicy : " "
4480
+
4473
4481
# # Priority class assigned to the Pods
4474
4482
# #
4475
4483
priorityClassName : " "
You can’t perform that action at this time.
0 commit comments