kubeadm: bump coredns to 1.11.3

This commit is contained in:
Benjamin Elder 2024-07-29 13:38:05 -07:00
parent 1f42675075
commit 3301161c36
4 changed files with 16 additions and 16 deletions

View File

@ -41,7 +41,7 @@ dependencies:
match: registry.k8s.io/coredns
- name: "coredns-kubeadm"
version: 1.11.1
version: 1.11.3
refPaths:
- path: cmd/kubeadm/app/constants/constants.go
match: CoreDNSVersion =

View File

@ -360,7 +360,7 @@ const (
CoreDNSImageName = "coredns"
// CoreDNSVersion is the version of CoreDNS to be deployed if it is used
CoreDNSVersion = "v1.11.1"
CoreDNSVersion = "v1.11.3"
// ClusterConfigurationKind is the string kind value for the ClusterConfiguration struct
ClusterConfigurationKind = "ClusterConfiguration"

View File

@ -315,21 +315,21 @@ func TestGetDNSImage(t *testing.T) {
cfg *kubeadmapi.ClusterConfiguration
}{
{
expected: "foo.io/coredns:v1.11.1",
expected: "foo.io/coredns:v1.11.3",
cfg: &kubeadmapi.ClusterConfiguration{
ImageRepository: "foo.io",
DNS: kubeadmapi.DNS{},
},
},
{
expected: kubeadmapiv1.DefaultImageRepository + "/coredns/coredns:v1.11.1",
expected: kubeadmapiv1.DefaultImageRepository + "/coredns/coredns:v1.11.3",
cfg: &kubeadmapi.ClusterConfiguration{
ImageRepository: kubeadmapiv1.DefaultImageRepository,
DNS: kubeadmapi.DNS{},
},
},
{
expected: "foo.io/coredns/coredns:v1.11.1",
expected: "foo.io/coredns/coredns:v1.11.3",
cfg: &kubeadmapi.ClusterConfiguration{
ImageRepository: "foo.io",
DNS: kubeadmapi.DNS{
@ -340,12 +340,12 @@ func TestGetDNSImage(t *testing.T) {
},
},
{
expected: "foo.io/coredns/coredns:v1.11.1",
expected: "foo.io/coredns/coredns:v1.11.3",
cfg: &kubeadmapi.ClusterConfiguration{
ImageRepository: "foo.io/coredns",
DNS: kubeadmapi.DNS{
ImageMeta: kubeadmapi.ImageMeta{
ImageTag: "v1.11.1",
ImageTag: "v1.11.3",
},
},
},

View File

@ -701,7 +701,7 @@ spec:
kubernetes.io/os: linux
containers:
- name: coredns
image: foo.bar.io/coredns:v1.11.1
image: foo.bar.io/coredns:v1.11.3
imagePullPolicy: IfNotPresent
resources:
limits:
@ -985,7 +985,7 @@ spec:
kubernetes.io/os: linux
containers:
- name: coredns
image: foo.bar.io/coredns:v1.11.1
image: foo.bar.io/coredns:v1.11.3
imagePullPolicy: IfNotPresent
resources:
limits:
@ -1414,28 +1414,28 @@ func TestDeployedDNSAddon(t *testing.T) {
}{
{
name: "default",
image: "registry.k8s.io/coredns/coredns:v1.11.1",
image: "registry.k8s.io/coredns/coredns:v1.11.3",
deploymentSize: 1,
wantVersion: "v1.11.1",
wantVersion: "v1.11.3",
},
{
name: "no dns addon deployment",
image: "registry.k8s.io/coredns/coredns:v1.11.1",
image: "registry.k8s.io/coredns/coredns:v1.11.3",
deploymentSize: 0,
wantVersion: "",
},
{
name: "multiple dns addon deployment",
image: "registry.k8s.io/coredns/coredns:v1.11.1",
image: "registry.k8s.io/coredns/coredns:v1.11.3",
deploymentSize: 2,
wantVersion: "",
wantErr: true,
},
{
name: "with digest",
image: "registry.k8s.io/coredns/coredns:v1.11.1@sha256:a0ead06651cf580044aeb0a0feba63591858fb2e43ade8c9dea45a6a89ae7e5e",
image: "registry.k8s.io/coredns/coredns:v1.11.3@sha256:a0ead06651cf580044aeb0a0feba63591858fb2e43ade8c9dea45a6a89ae7e5e",
deploymentSize: 1,
wantVersion: "v1.11.1",
wantVersion: "v1.11.3",
},
{
name: "without registry",
@ -1655,7 +1655,7 @@ func TestIsCoreDNSConfigMapMigrationRequired(t *testing.T) {
// deploymentSize is the number of deployments with `k8s-app=kube-dns` label.
func newMockClientForTest(t *testing.T, replicas int32, deploymentSize int, image string, configMap string, configData string) *clientsetfake.Clientset {
if image == "" {
image = "registry.k8s.io/coredns/coredns:v1.11.1"
image = "registry.k8s.io/coredns/coredns:v1.11.3"
}
client := clientsetfake.NewSimpleClientset()
for i := 0; i < deploymentSize; i++ {