Skip to content

Commit 302a850

Browse files
committed
Update coredns version to v1.12.1
Signed-off-by: yashsingh74 <[email protected]>
1 parent 195803c commit 302a850

File tree

11 files changed

+55
-13
lines changed

11 files changed

+55
-13
lines changed

build/dependencies.yaml

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

3232
# CoreDNS
3333
- name: "coredns-kube-up"
34-
version: 1.12.0
34+
version: 1.12.1
3535
refPaths:
3636
- path: cluster/addons/dns/coredns/coredns.yaml.base
3737
match: registry.k8s.io/coredns
@@ -41,7 +41,7 @@ dependencies:
4141
match: registry.k8s.io/coredns
4242

4343
- name: "coredns-kubeadm"
44-
version: 1.12.0
44+
version: 1.12.1
4545
refPaths:
4646
- path: cmd/kubeadm/app/constants/constants.go
4747
match: CoreDNSVersion =

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ spec:
133133
kubernetes.io/os: linux
134134
containers:
135135
- name: coredns
136-
image: registry.k8s.io/coredns/coredns:v1.12.0
136+
image: registry.k8s.io/coredns/coredns:v1.12.1
137137
imagePullPolicy: IfNotPresent
138138
resources:
139139
limits:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ spec:
133133
kubernetes.io/os: linux
134134
containers:
135135
- name: coredns
136-
image: registry.k8s.io/coredns/coredns:v1.12.0
136+
image: registry.k8s.io/coredns/coredns:v1.12.1
137137
imagePullPolicy: IfNotPresent
138138
resources:
139139
limits:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ spec:
133133
kubernetes.io/os: linux
134134
containers:
135135
- name: coredns
136-
image: registry.k8s.io/coredns/coredns:v1.12.0
136+
image: registry.k8s.io/coredns/coredns:v1.12.1
137137
imagePullPolicy: IfNotPresent
138138
resources:
139139
limits:

cmd/kubeadm/app/constants/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ const (
364364
CoreDNSImageName = "coredns"
365365

366366
// CoreDNSVersion is the version of CoreDNS to be deployed if it is used
367-
CoreDNSVersion = "v1.12.0"
367+
CoreDNSVersion = "v1.12.1"
368368

369369
// ClusterConfigurationKind is the string kind value for the ClusterConfiguration struct
370370
ClusterConfigurationKind = "ClusterConfiguration"

cmd/kubeadm/app/phases/addons/dns/dns_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1442,7 +1442,7 @@ func TestDeployedDNSAddon(t *testing.T) {
14421442
},
14431443
{
14441444
name: "with digest",
1445-
image: "registry.k8s.io/coredns/coredns:v1.12.0@sha256:a0ead06651cf580044aeb0a0feba63591858fb2e43ade8c9dea45a6a89ae7e5e",
1445+
image: "registry.k8s.io/coredns/coredns:v1.12.1@sha256:a0ead06651cf580044aeb0a0feba63591858fb2e43ade8c9dea45a6a89ae7e5e",
14461446
deploymentSize: 1,
14471447
wantVersion: kubeadmconstants.CoreDNSVersion,
14481448
},

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
2020
github.com/blang/semver/v4 v4.0.0
2121
github.com/container-storage-interface/spec v1.9.0
22-
github.com/coredns/corefile-migration v1.0.25
22+
github.com/coredns/corefile-migration v1.0.26
2323
github.com/coreos/go-oidc v2.3.0+incompatible
2424
github.com/coreos/go-systemd/v22 v22.5.0
2525
github.com/cpuguy83/go-md2man/v2 v2.0.4

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ github.com/containerd/typeurl/v2 v2.2.2 h1:3jN/k2ysKuPCsln5Qv8bzR9cxal8XjkxPogJf
191191
github.com/containerd/typeurl/v2 v2.2.2/go.mod h1:95ljDnPfD3bAbDJRugOiShd/DlAAsxGtUBhJxIn7SCk=
192192
github.com/coredns/caddy v1.1.1 h1:2eYKZT7i6yxIfGP3qLJoJ7HAsDJqYB+X68g4NYjSrE0=
193193
github.com/coredns/caddy v1.1.1/go.mod h1:A6ntJQlAWuQfFlsd9hvigKbo2WS0VUs2l1e2F+BawD4=
194-
github.com/coredns/corefile-migration v1.0.25 h1:/XexFhM8FFlFLTS/zKNEWgIZ8Gl5GaWrHsMarGj/PRQ=
195-
github.com/coredns/corefile-migration v1.0.25/go.mod h1:56DPqONc3njpVPsdilEnfijCwNGC3/kTJLl7i7SPavY=
194+
github.com/coredns/corefile-migration v1.0.26 h1:xiiEkVB1Dwolb24pkeDUDBfygV9/XsOSq79yFCrhptY=
195+
github.com/coredns/corefile-migration v1.0.26/go.mod h1:56DPqONc3njpVPsdilEnfijCwNGC3/kTJLl7i7SPavY=
196196
github.com/coreos/go-oidc v2.3.0+incompatible h1:+5vEsrgprdLjjQ9FzIKAzQz1wwPD+83hQRfUIPh7rO0=
197197
github.com/coreos/go-oidc v2.3.0+incompatible/go.mod h1:CgnwVTmzoESiwO9qyAFEMiHoZ1nMCKZlZ9V6mm3/LKc=
198198
github.com/coreos/go-semver v0.3.1 h1:yi21YpKnrx1gt5R+la8n5WgS0kCrsPp33dmEyHReZr4=

vendor/github.com/coredns/corefile-migration/migration/plugins.go

Lines changed: 18 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/coredns/corefile-migration/migration/versions.go

Lines changed: 26 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)