Skip to content

Commit 4f76e4a

Browse files
authored
Merge pull request kubernetes#115603 from pacoxu/coredns-v1.10.1
update coredns to v1.10.1
2 parents 0661913 + b24725e commit 4f76e4a

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

build/dependencies.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies:
2929

3030
# CoreDNS
3131
- name: "coredns-kube-up"
32-
version: 1.10.0
32+
version: 1.10.1
3333
refPaths:
3434
- path: cluster/addons/dns/coredns/coredns.yaml.base
3535
match: registry.k8s.io/coredns
@@ -39,7 +39,7 @@ dependencies:
3939
match: registry.k8s.io/coredns
4040

4141
- name: "coredns-kubeadm"
42-
version: 1.10.0
42+
version: 1.10.1
4343
refPaths:
4444
- path: cmd/kubeadm/app/constants/constants.go
4545
match: CoreDNSVersion =

cluster/addons/dns/coredns/coredns.yaml.base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ spec:
139139
kubernetes.io/os: linux
140140
containers:
141141
- name: coredns
142-
image: registry.k8s.io/coredns/coredns:v1.10.0
142+
image: registry.k8s.io/coredns/coredns:v1.10.1
143143
imagePullPolicy: IfNotPresent
144144
resources:
145145
limits:

cluster/addons/dns/coredns/coredns.yaml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ spec:
139139
kubernetes.io/os: linux
140140
containers:
141141
- name: coredns
142-
image: registry.k8s.io/coredns/coredns:v1.10.0
142+
image: registry.k8s.io/coredns/coredns:v1.10.1
143143
imagePullPolicy: IfNotPresent
144144
resources:
145145
limits:

cluster/addons/dns/coredns/coredns.yaml.sed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ spec:
139139
kubernetes.io/os: linux
140140
containers:
141141
- name: coredns
142-
image: registry.k8s.io/coredns/coredns:v1.10.0
142+
image: registry.k8s.io/coredns/coredns:v1.10.1
143143
imagePullPolicy: IfNotPresent
144144
resources:
145145
limits:

cmd/kubeadm/app/constants/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ const (
345345
CoreDNSImageName = "coredns"
346346

347347
// CoreDNSVersion is the version of CoreDNS to be deployed if it is used
348-
CoreDNSVersion = "v1.10.0"
348+
CoreDNSVersion = "v1.10.1"
349349

350350
// ClusterConfigurationKind is the string kind value for the ClusterConfiguration struct
351351
ClusterConfigurationKind = "ClusterConfiguration"

cmd/kubeadm/app/images/images_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,21 +241,21 @@ func TestGetDNSImage(t *testing.T) {
241241
cfg *kubeadmapi.ClusterConfiguration
242242
}{
243243
{
244-
expected: "foo.io/coredns:v1.10.0",
244+
expected: "foo.io/coredns:v1.10.1",
245245
cfg: &kubeadmapi.ClusterConfiguration{
246246
ImageRepository: "foo.io",
247247
DNS: kubeadmapi.DNS{},
248248
},
249249
},
250250
{
251-
expected: kubeadmapiv1beta3.DefaultImageRepository + "/coredns/coredns:v1.10.0",
251+
expected: kubeadmapiv1beta3.DefaultImageRepository + "/coredns/coredns:v1.10.1",
252252
cfg: &kubeadmapi.ClusterConfiguration{
253253
ImageRepository: kubeadmapiv1beta3.DefaultImageRepository,
254254
DNS: kubeadmapi.DNS{},
255255
},
256256
},
257257
{
258-
expected: "foo.io/coredns/coredns:v1.10.0",
258+
expected: "foo.io/coredns/coredns:v1.10.1",
259259
cfg: &kubeadmapi.ClusterConfiguration{
260260
ImageRepository: "foo.io",
261261
DNS: kubeadmapi.DNS{

0 commit comments

Comments
 (0)