File tree 3 files changed +13
-1
lines changed
charts/kube-state-metrics
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ keywords:
7
7
- prometheus
8
8
- kubernetes
9
9
type : application
10
- version : 5.31.1
10
+ version : 5.31.2
11
11
# renovate: github-releases=kubernetes/kube-state-metrics
12
12
appVersion : 2.15.0
13
13
home : https://github.com/kubernetes/kube-state-metrics/
Original file line number Diff line number Diff line change 52
52
initContainers :
53
53
{{- toYaml . | nindent 6 }}
54
54
{{- end }}
55
+ {{- if .Values.dnsConfig }}
56
+ dnsConfig : {{ toYaml .Values.dnsConfig | nindent 8 }}
57
+ {{- end }}
58
+ dnsPolicy : {{ .Values.dnsPolicy }}
55
59
containers :
56
60
{{- $servicePort := ternary 9090 (.Values.service.port | default 8080) .Values.kubeRBACProxy.enabled}}
57
61
{{- $telemetryPort := ternary 9091 (.Values.selfMonitor.telemetryPort | default 8081) .Values.kubeRBACProxy.enabled}}
Original file line number Diff line number Diff line change @@ -519,6 +519,14 @@ initContainers: []
519
519
# - name: crd-sidecar
520
520
# image: kiwigrid/k8s-sidecar:latest
521
521
522
+ # # dnsPolicy allows to change the default DNS configuration for the pod
523
+ # # Ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy
524
+ dnsPolicy : ClusterFirst
525
+
526
+ # # dnsConfig allows setting up specific DNS configuration for the pod
527
+ # # Ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config
528
+ dnsConfig : {}
529
+
522
530
# # Settings for startup, liveness and readiness probes
523
531
# # Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
524
532
# #
You can’t perform that action at this time.
0 commit comments