File tree Expand file tree Collapse file tree 4 files changed +9
-17
lines changed
cluster/addons/dns/coredns Expand file tree Collapse file tree 4 files changed +9
-17
lines changed Original file line number Diff line number Diff line change 64
64
.:53 {
65
65
errors
66
66
health
67
- ready
68
67
kubernetes __PILLAR__DNS__DOMAIN__ in-addr.arpa ip6.arpa {
69
68
pods insecure
70
69
fallthrough in-addr.arpa ip6.arpa
@@ -116,7 +115,7 @@ spec:
116
115
beta.kubernetes.io/os: linux
117
116
containers:
118
117
- name: coredns
119
- image: k8s.gcr.io/coredns:1.5.0
118
+ image: k8s.gcr.io/coredns:1.3.1
120
119
imagePullPolicy: IfNotPresent
121
120
resources:
122
121
limits:
@@ -150,8 +149,8 @@ spec:
150
149
failureThreshold: 5
151
150
readinessProbe:
152
151
httpGet:
153
- path: /ready
154
- port: 8181
152
+ path: /health
153
+ port: 8080
155
154
scheme: HTTP
156
155
securityContext:
157
156
allowPrivilegeEscalation: false
Original file line number Diff line number Diff line change 64
64
.:53 {
65
65
errors
66
66
health
67
- ready
68
67
kubernetes {{ pillar['dns_domain'] }} in-addr.arpa ip6.arpa {
69
68
pods insecure
70
69
fallthrough in-addr.arpa ip6.arpa
@@ -116,7 +115,7 @@ spec:
116
115
beta.kubernetes.io/os: linux
117
116
containers:
118
117
- name: coredns
119
- image: k8s.gcr.io/coredns:1.5.0
118
+ image: k8s.gcr.io/coredns:1.3.1
120
119
imagePullPolicy: IfNotPresent
121
120
resources:
122
121
limits:
@@ -150,8 +149,8 @@ spec:
150
149
failureThreshold: 5
151
150
readinessProbe:
152
151
httpGet:
153
- path: /ready
154
- port: 8181
152
+ path: /health
153
+ port: 8080
155
154
scheme: HTTP
156
155
securityContext:
157
156
allowPrivilegeEscalation: false
Original file line number Diff line number Diff line change 64
64
.:53 {
65
65
errors
66
66
health
67
- ready
68
67
kubernetes $DNS_DOMAIN in-addr.arpa ip6.arpa {
69
68
pods insecure
70
69
fallthrough in-addr.arpa ip6.arpa
@@ -116,7 +115,7 @@ spec:
116
115
beta.kubernetes.io/os : linux
117
116
containers :
118
117
- name : coredns
119
- image : k8s.gcr.io/coredns:1.5.0
118
+ image : k8s.gcr.io/coredns:1.3.1
120
119
imagePullPolicy : IfNotPresent
121
120
resources :
122
121
limits :
@@ -150,8 +149,8 @@ spec:
150
149
failureThreshold : 5
151
150
readinessProbe :
152
151
httpGet :
153
- path : /ready
154
- port : 8181
152
+ path : /health
153
+ port : 8080
155
154
scheme : HTTP
156
155
securityContext :
157
156
allowPrivilegeEscalation : false
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ func (t *dnsFederationsConfigMapTest) run() {
67
67
valid1 := map [string ]string {
68
68
"Corefile" : fmt .Sprintf (`.:53 {
69
69
health
70
- ready
71
70
kubernetes %v in-addr.arpa ip6.arpa {
72
71
pods insecure
73
72
upstream
@@ -84,7 +83,6 @@ func (t *dnsFederationsConfigMapTest) run() {
84
83
valid2 := map [string ]string {
85
84
"Corefile" : fmt .Sprintf (`:53 {
86
85
health
87
- ready
88
86
kubernetes %v in-addr.arpa ip6.arpa {
89
87
pods insecure
90
88
upstream
@@ -235,7 +233,6 @@ func (t *dnsNameserverTest) run(isIPv6 bool) {
235
233
t .setConfigMap (& v1.ConfigMap {Data : map [string ]string {
236
234
"Corefile" : fmt .Sprintf (`.:53 {
237
235
health
238
- ready
239
236
kubernetes %v in-addr.arpa ip6.arpa {
240
237
pods insecure
241
238
upstream
@@ -335,7 +332,6 @@ func (t *dnsPtrFwdTest) run(isIPv6 bool) {
335
332
t .setConfigMap (& v1.ConfigMap {Data : map [string ]string {
336
333
"Corefile" : fmt .Sprintf (`.:53 {
337
334
health
338
- ready
339
335
kubernetes %v in-addr.arpa ip6.arpa {
340
336
pods insecure
341
337
upstream
@@ -447,7 +443,6 @@ func (t *dnsExternalNameTest) run(isIPv6 bool) {
447
443
t .setConfigMap (& v1.ConfigMap {Data : map [string ]string {
448
444
"Corefile" : fmt .Sprintf (`.:53 {
449
445
health
450
- ready
451
446
kubernetes %v in-addr.arpa ip6.arpa {
452
447
pods insecure
453
448
upstream
You can’t perform that action at this time.
0 commit comments