From 297a37d1812672b271b2718425f64add960a3e88 Mon Sep 17 00:00:00 2001 From: Peter Hunt Date: Wed, 26 Aug 2026 13:15:47 -0400 Subject: [PATCH] DRA: drop alpha/beta DRA API test if TPNU if the cluster is in TPNU, then it can be safe to enable a non GA API Signed-off-by: Peter Hunt --- test/extended/node/dra.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/extended/node/dra.go b/test/extended/node/dra.go index 701181ccc72d..2bbad7658731 100644 --- a/test/extended/node/dra.go +++ b/test/extended/node/dra.go @@ -21,6 +21,10 @@ var _ = g.Describe("[sig-node][DRA][OCPFeatureGate:DynamicResourceAllocation]", g.Context("Dynamic Resource Allocation", func() { g.It("should verify beta and alpha DRA APIs are disabled [apigroup:resource.k8s.io]", func(ctx context.Context) { + if exutil.IsTechPreviewNoUpgrade(ctx, oc.AdminConfigClient()) { + g.Skip("skipping, this restriction may not be applicable to TechPreviewNoUpgrade clusters") + } + g.By("discovering available API versions for resource.k8s.io group") discoveryClient := oc.AdminKubeClient().Discovery() apiGroup, err := discoveryClient.ServerResourcesForGroupVersion("resource.k8s.io/v1")