File tree Expand file tree Collapse file tree 9 files changed +116
-22
lines changed
github.com/coredns/corefile-migration/migration Expand file tree Collapse file tree 9 files changed +116
-22
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
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ require (
29
29
github.com/codegangsta/negroni v1.0.0 // indirect
30
30
github.com/container-storage-interface/spec v1.2.0
31
31
github.com/containernetworking/cni v0.8.0
32
- github.com/coredns/corefile-migration v1.0.8
32
+ github.com/coredns/corefile-migration v1.0.10
33
33
github.com/coreos/go-oidc v2.1.0+incompatible
34
34
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e
35
35
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f
@@ -209,7 +209,7 @@ replace (
209
209
github.com/containerd/ttrpc => github.com/containerd/ttrpc v1.0.0
210
210
github.com/containerd/typeurl => github.com/containerd/typeurl v1.0.0
211
211
github.com/containernetworking/cni => github.com/containernetworking/cni v0.8.0
212
- github.com/coredns/corefile-migration => github.com/coredns/corefile-migration v1.0.8
212
+ github.com/coredns/corefile-migration => github.com/coredns/corefile-migration v1.0.10
213
213
github.com/coreos/bbolt => github.com/coreos/bbolt v1.3.2
214
214
github.com/coreos/etcd => github.com/coreos/etcd v3.3.10+incompatible
215
215
github.com/coreos/go-oidc => github.com/coreos/go-oidc v2.1.0+incompatible
Original file line number Diff line number Diff line change @@ -108,8 +108,8 @@ github.com/containerd/typeurl v1.0.0 h1:7LMH7LfEmpWeCkGcIputvd4P0Rnd0LrIv1Jk2s5o
108
108
github.com/containerd/typeurl v1.0.0 /go.mod h1:Cm3kwCdlkCfMSHURc+r6fwoGH6/F1hH3S4sg0rLFWPc =
109
109
github.com/containernetworking/cni v0.8.0 h1:BT9lpgGoH4jw3lFC7Odz2prU5ruiYKcgAjMCbgybcKI =
110
110
github.com/containernetworking/cni v0.8.0 /go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY =
111
- github.com/coredns/corefile-migration v1.0.8 h1:y/DSRGlmrLPTMUGWR81MgFC2ITLiaTGkbth0BqW3wvc =
112
- github.com/coredns/corefile-migration v1.0.8 /go.mod h1:OFwBp/Wc9dJt5cAZzHWMNhK1r5L0p0jDwIBc6j8NC8E =
111
+ github.com/coredns/corefile-migration v1.0.10 h1:7HI4r5S5Fne749a+JDxUZppqBpYoZK8Q53ZVK9cn3aM =
112
+ github.com/coredns/corefile-migration v1.0.10 /go.mod h1:RMy/mXdeDlYwzt0vdMEJvT2hGJ2I86/eO0UdXmH9XNI =
113
113
github.com/coreos/bbolt v1.3.2 /go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk =
114
114
github.com/coreos/etcd v3.3.10+incompatible /go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE =
115
115
github.com/coreos/go-oidc v2.1.0+incompatible h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM =
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ github.com/containernetworking/cni/pkg/types/020
169
169
github.com/containernetworking/cni/pkg/types/current
170
170
github.com/containernetworking/cni/pkg/utils
171
171
github.com/containernetworking/cni/pkg/version
172
- # github.com/coredns/corefile-migration v1.0.8 => github.com/coredns/corefile-migration v1.0.8
172
+ # github.com/coredns/corefile-migration v1.0.10 => github.com/coredns/corefile-migration v1.0.10
173
173
github.com/coredns/corefile-migration/migration
174
174
github.com/coredns/corefile-migration/migration/corefile
175
175
# github.com/coreos/go-oidc v2.1.0+incompatible => github.com/coreos/go-oidc v2.1.0+incompatible
You can’t perform that action at this time.
0 commit comments