File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ dependencies:
22
22
match : k8s.gcr.io/coredns
23
23
24
24
- name : " coredns-kubeadm"
25
- version : 1.6.7
25
+ version : 1.7.0
26
26
refPaths :
27
27
- path : cmd/kubeadm/app/constants/constants.go
28
28
match : CoreDNSVersion =
Original file line number Diff line number Diff line change @@ -329,7 +329,7 @@ const (
329
329
KubeDNSVersion = "1.14.13"
330
330
331
331
// CoreDNSVersion is the version of CoreDNS to be deployed if it is used
332
- CoreDNSVersion = "1.6.7 "
332
+ CoreDNSVersion = "1.7.0 "
333
333
334
334
// ClusterConfigurationKind is the string kind value for the ClusterConfiguration struct
335
335
ClusterConfigurationKind = "ClusterConfiguration"
Original file line number Diff line number Diff line change @@ -585,7 +585,9 @@ func TestCreateCoreDNSConfigMap(t *testing.T) {
585
585
ttl 30
586
586
}
587
587
prometheus :9153
588
- forward . /etc/resolv.conf
588
+ forward . /etc/resolv.conf {
589
+ max_concurrent 1000
590
+ }
589
591
cache 30
590
592
loop
591
593
reload
@@ -623,7 +625,9 @@ func TestCreateCoreDNSConfigMap(t *testing.T) {
623
625
fallthrough in-addr.arpa ip6.arpa
624
626
}
625
627
prometheus :9153
626
- forward . /etc/resolv.conf
628
+ forward . /etc/resolv.conf {
629
+ max_concurrent 1000
630
+ }
627
631
k8s_external example.com
628
632
cache 30
629
633
loop
Original file line number Diff line number Diff line change @@ -320,7 +320,9 @@ data:
320
320
ttl 30
321
321
}
322
322
prometheus :9153
323
- forward . {{ .UpstreamNameserver }}
323
+ forward . {{ .UpstreamNameserver }} {
324
+ max_concurrent 1000
325
+ }
324
326
cache 30
325
327
loop
326
328
reload
You can’t perform that action at this time.
0 commit comments