From 3a01281d2fb7ff8f201e515f774a805dd133e720 Mon Sep 17 00:00:00 2001 From: Sotiris Salloumis Date: Wed, 17 Jul 2024 07:55:44 +0200 Subject: [PATCH] test/e2e_node: pod_resize tests add NodeAlphaFeature label, as the feature is in alpha to be skipped in CI add missing Arm64 check --- test/e2e_node/pod_resize_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e_node/pod_resize_test.go b/test/e2e_node/pod_resize_test.go index 7879f82980e..61c8a741140 100644 --- a/test/e2e_node/pod_resize_test.go +++ b/test/e2e_node/pod_resize_test.go @@ -1241,7 +1241,7 @@ func doPodResizeErrorTests() { tc := tests[idx] ginkgo.It(tc.name, func(ctx context.Context) { ginkgo.By("waiting for the node to be ready", func() { - if !supportsInPlacePodVerticalScaling(ctx, f) || framework.NodeOSDistroIs("windows") { + if !supportsInPlacePodVerticalScaling(ctx, f) || framework.NodeOSDistroIs("windows") || isRunningOnArm64() { e2eskipper.Skipf("runtime does not support InPlacePodVerticalScaling -- skipping") } }) @@ -1303,7 +1303,7 @@ func doPodResizeErrorTests() { // Above tests are performed by doSheduletTests() and doPodResizeResourceQuotaTests() // in test/node/pod_resize_test.go -var _ = SIGDescribe("Pod InPlace Resize Container", framework.WithSerial(), feature.InPlacePodVerticalScaling, func() { +var _ = SIGDescribe("Pod InPlace Resize Container", framework.WithSerial(), feature.InPlacePodVerticalScaling, "[NodeAlphaFeature:InPlacePodVerticalScaling]", func() { if !podOnCgroupv2Node { cgroupMemLimit = CgroupMemLimit cgroupCPULimit = CgroupCPUQuota