Skip to content

WIP: Experiment with enabling VolumeAttributesClass tests #2286

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion openshift-hack/cmd/k8s-tests-ext/disabled_tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ func filterOutDisabledSpecs(specs et.ExtensionTestSpecs) et.ExtensionTestSpecs {
"[Feature:UserNamespacesPodSecurityStandards]",
"[Feature:UserNamespacesSupport]", // disabled Beta
"[Feature:DynamicResourceAllocation]",
"[Feature:VolumeAttributesClass]", // disabled Beta
"[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
6 changes: 6 additions & 0 deletions openshift-hack/cmd/k8s-tests-ext/labels.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ func addLabelsToSpecs(specs et.ExtensionTestSpecs) {

"[sig-network] IngressClass [Feature:Ingress] should set default value on new IngressClass", //https://bugzilla.redhat.com/show_bug.cgi?id=1833583
},
// Copy TechPreview FeatureGates to OCPFeatureGates to run the tests for them only in jobs that have the feature gate enabled.
// openshift-tests understands only [OCPFeatureGate:xyz], it does not understand [FeatureGate:xyz].
// Feel free to add a new TP gates.
"[OCPFeatureGate:VolumeAttributesClass]": {
"[FeatureGate:VolumeAttributesClass]",
},
}

for label, names := range namesByLabel {
Expand Down
Loading