File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed
cluster/addons/dns/coredns Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ dependencies:
29
29
30
30
# CoreDNS
31
31
- name : " coredns-kube-up"
32
- version : 1.10.0
32
+ version : 1.10.1
33
33
refPaths :
34
34
- path : cluster/addons/dns/coredns/coredns.yaml.base
35
35
match : registry.k8s.io/coredns
@@ -39,7 +39,7 @@ dependencies:
39
39
match : registry.k8s.io/coredns
40
40
41
41
- name : " coredns-kubeadm"
42
- version : 1.10.0
42
+ version : 1.10.1
43
43
refPaths :
44
44
- path : cmd/kubeadm/app/constants/constants.go
45
45
match : CoreDNSVersion =
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ spec:
139
139
kubernetes.io/os: linux
140
140
containers:
141
141
- name: coredns
142
- image: registry.k8s.io/coredns/coredns:v1.10.0
142
+ image: registry.k8s.io/coredns/coredns:v1.10.1
143
143
imagePullPolicy: IfNotPresent
144
144
resources:
145
145
limits:
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ spec:
139
139
kubernetes.io/os: linux
140
140
containers:
141
141
- name: coredns
142
- image: registry.k8s.io/coredns/coredns:v1.10.0
142
+ image: registry.k8s.io/coredns/coredns:v1.10.1
143
143
imagePullPolicy: IfNotPresent
144
144
resources:
145
145
limits:
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ spec:
139
139
kubernetes.io/os : linux
140
140
containers :
141
141
- name : coredns
142
- image : registry.k8s.io/coredns/coredns:v1.10.0
142
+ image : registry.k8s.io/coredns/coredns:v1.10.1
143
143
imagePullPolicy : IfNotPresent
144
144
resources :
145
145
limits :
Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ const (
345
345
CoreDNSImageName = "coredns"
346
346
347
347
// CoreDNSVersion is the version of CoreDNS to be deployed if it is used
348
- CoreDNSVersion = "v1.10.0 "
348
+ CoreDNSVersion = "v1.10.1 "
349
349
350
350
// ClusterConfigurationKind is the string kind value for the ClusterConfiguration struct
351
351
ClusterConfigurationKind = "ClusterConfiguration"
Original file line number Diff line number Diff line change @@ -241,21 +241,21 @@ func TestGetDNSImage(t *testing.T) {
241
241
cfg * kubeadmapi.ClusterConfiguration
242
242
}{
243
243
{
244
- expected : "foo.io/coredns:v1.10.0 " ,
244
+ expected : "foo.io/coredns:v1.10.1 " ,
245
245
cfg : & kubeadmapi.ClusterConfiguration {
246
246
ImageRepository : "foo.io" ,
247
247
DNS : kubeadmapi.DNS {},
248
248
},
249
249
},
250
250
{
251
- expected : kubeadmapiv1beta3 .DefaultImageRepository + "/coredns/coredns:v1.10.0 " ,
251
+ expected : kubeadmapiv1beta3 .DefaultImageRepository + "/coredns/coredns:v1.10.1 " ,
252
252
cfg : & kubeadmapi.ClusterConfiguration {
253
253
ImageRepository : kubeadmapiv1beta3 .DefaultImageRepository ,
254
254
DNS : kubeadmapi.DNS {},
255
255
},
256
256
},
257
257
{
258
- expected : "foo.io/coredns/coredns:v1.10.0 " ,
258
+ expected : "foo.io/coredns/coredns:v1.10.1 " ,
259
259
cfg : & kubeadmapi.ClusterConfiguration {
260
260
ImageRepository : "foo.io" ,
261
261
DNS : kubeadmapi.DNS {
You can’t perform that action at this time.
0 commit comments