File tree 3 files changed +11
-1
lines changed
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : coredns
3
- version : 1.19.7
3
+ version : 1.19.8
4
4
appVersion : 1.9.4
5
5
home : https://coredns.io
6
6
icon : https://coredns.io/images/CoreDNS_Colour_Horizontal.png
Original file line number Diff line number Diff line change 89
89
{{- if .Values.nodeSelector }}
90
90
nodeSelector :
91
91
{{ toYaml .Values.nodeSelector | indent 8 }}
92
+ {{- end }}
93
+ {{- if .Values.initContainers }}
94
+ initContainers :
95
+ {{- toYaml .Values.initContainers | nindent 8}}
92
96
{{- end }}
93
97
containers :
94
98
- name : " coredns"
Original file line number Diff line number Diff line change @@ -42,6 +42,12 @@ rollingUpdate:
42
42
maxUnavailable : 1
43
43
maxSurge : 25%
44
44
45
+ # # Optionally, add init containers to run before the main CoreDNS container starts up.
46
+ # initContainers:
47
+ # - name: helloworld
48
+ # image: "busybox"
49
+ # command: ["bash", "-c", "Hello world"]
50
+
45
51
# Under heavy load it takes more that standard time to remove Pod endpoint from a cluster.
46
52
# This will delay termination of our pod by `preStopSleep`. To make sure kube-proxy has
47
53
# enough time to catch up.
You can’t perform that action at this time.
0 commit comments