Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion openshift-hack/cmd/k8s-tests-ext/disabled_tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ func filterOutDisabledSpecs(specs et.ExtensionTestSpecs) et.ExtensionTestSpecs {
"Alpha": { // alpha features that are not gated
"[Feature:StorageVersionAPI]",
"[Feature:ClusterTrustBundle]",
"[Feature:DynamicResourceAllocation]",
"[sig-cli] Kubectl client Kubectl prune with applyset should apply and prune objects", // Alpha feature since k8s 1.27
// 4.19
"[Feature:PodLevelResources]",
Expand Down Expand Up @@ -170,6 +169,12 @@ func filterOutDisabledSpecs(specs et.ExtensionTestSpecs) et.ExtensionTestSpecs {
// https://issues.redhat.com/browse/OCPBUGS-17194
"[sig-node] ImageCredentialProvider [Feature:KubeletCredentialProviders] should be able to create pod with image credentials fetched from external credential provider",
},
// tests for beta APIs that are not enabled
"DisabledResourceBetaAPI": {
Copy link
Member Author

@sairameshv sairameshv Oct 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello @jacobsee , @bertinatto
I know you have been working on the rebase and so the disabling of DRA beta related tests from your commit of the 1.34 rebase PR

Do you think this change of keeping the beta tests under a separate key "DisabledResourceBetaAPI" makes sense? If so, do you want to pick this commit as part of the rebase PR?

// Disabling ALL DRA tests with beta api i.e. off-by-default,
// which means ALL tests under tag/decorator [Beta] and [Feature:OffByDefault] labels automatically.
"[Feature:DynamicResourceAllocation] [FeatureGate:DynamicResourceAllocation] [Beta] [Feature:OffByDefault]",
},
// tests that may work, but we don't support them
"Unsupported": {
"[Driver: rbd]", // OpenShift 4.x does not support Ceph RBD (use CSI instead)
Expand Down