From 7f03fbaf241cbd292ea307fdcfc238b0c3c4cac7 Mon Sep 17 00:00:00 2001 From: rajaSahil Date: Wed, 17 Sep 2025 13:37:20 +0530 Subject: [PATCH 1/3] update image for rockylinux 9 and rhel 9 Signed-off-by: rajaSahil --- test/e2e/provisioning/helper.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/e2e/provisioning/helper.go b/test/e2e/provisioning/helper.go index 2ccc9b439..fbcf0abe0 100644 --- a/test/e2e/provisioning/helper.go +++ b/test/e2e/provisioning/helper.go @@ -49,9 +49,9 @@ var ( openStackImages = map[string]string{ string(providerconfigtypes.OperatingSystemUbuntu): "kubermatic-ubuntu", - string(providerconfigtypes.OperatingSystemRHEL): "machine-controller-e2e-rhel-8-5", + string(providerconfigtypes.OperatingSystemRHEL): "machine-controller-e2e-rhel-9-6", string(providerconfigtypes.OperatingSystemFlatcar): "kubermatic-e2e-flatcar", - string(providerconfigtypes.OperatingSystemRockyLinux): "machine-controller-e2e-rockylinux", + string(providerconfigtypes.OperatingSystemRockyLinux): "machine-controller-e2e-rockylinux-9-6", } openNebulaImages = map[string]string{ @@ -61,8 +61,8 @@ var ( vSphereOSImageTemplates = map[string]string{ string(providerconfigtypes.OperatingSystemFlatcar): "kkp-flatcar-3139.2.0", - string(providerconfigtypes.OperatingSystemRHEL): "kkp-rhel-8.6", - string(providerconfigtypes.OperatingSystemRockyLinux): "kkp-rockylinux-8", + string(providerconfigtypes.OperatingSystemRHEL): "rhel-9.6", + string(providerconfigtypes.OperatingSystemRockyLinux): "rockylinux-9.6", string(providerconfigtypes.OperatingSystemUbuntu): "kkp-ubuntu-24.04", } From 2758aff9c1152fb1df905ad4342fc7c7ed5c3ed1 Mon Sep 17 00:00:00 2001 From: rajaSahil Date: Wed, 17 Sep 2025 14:48:14 +0530 Subject: [PATCH 2/3] update storage class name Signed-off-by: rajaSahil --- test/e2e/provisioning/testdata/machinedeployment-kubevirt.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/provisioning/testdata/machinedeployment-kubevirt.yaml b/test/e2e/provisioning/testdata/machinedeployment-kubevirt.yaml index d97169adf..e903f266f 100644 --- a/test/e2e/provisioning/testdata/machinedeployment-kubevirt.yaml +++ b/test/e2e/provisioning/testdata/machinedeployment-kubevirt.yaml @@ -38,7 +38,7 @@ spec: primaryDisk: osImage: http://image-repo.kube-system.svc/images/<< KUBEVIRT_OS_IMAGE >>.img size: "25Gi" - storageClassName: rook-ceph-block + storageClassName: local-path dnsPolicy: "None" dnsConfig: nameservers: From 8288ffa88d501e8d6a22f4524d440599e71f9ec3 Mon Sep 17 00:00:00 2001 From: rajaSahil Date: Wed, 17 Sep 2025 14:56:12 +0530 Subject: [PATCH 3/3] update vm template name for vSphere Signed-off-by: rajaSahil --- test/e2e/provisioning/helper.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/provisioning/helper.go b/test/e2e/provisioning/helper.go index fbcf0abe0..9fca707ea 100644 --- a/test/e2e/provisioning/helper.go +++ b/test/e2e/provisioning/helper.go @@ -61,8 +61,8 @@ var ( vSphereOSImageTemplates = map[string]string{ string(providerconfigtypes.OperatingSystemFlatcar): "kkp-flatcar-3139.2.0", - string(providerconfigtypes.OperatingSystemRHEL): "rhel-9.6", - string(providerconfigtypes.OperatingSystemRockyLinux): "rockylinux-9.6", + string(providerconfigtypes.OperatingSystemRHEL): "kkp-rhel-9.6", + string(providerconfigtypes.OperatingSystemRockyLinux): "kkp-rockylinux-9.6", string(providerconfigtypes.OperatingSystemUbuntu): "kkp-ubuntu-24.04", }