Skip to content
Open
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
10 changes: 0 additions & 10 deletions pkg/testsuites/standard_suites.go
Original file line number Diff line number Diff line change
Expand Up @@ -410,16 +410,6 @@ var staticSuites = []ginkgo.TestSuite{
},
TestTimeout: 30 * time.Minute,
},
{
Name: "openshift/usernamespace",
Description: templates.LongDesc(`
This test suite runs tests to validate user namespace functionality.
`),
Qualifiers: []string{
`name.contains("[Suite:openshift/usernamespace")`,
},
TestTimeout: 60 * time.Minute,
},
{
Name: "openshift/two-node",
Description: templates.LongDesc(`
Expand Down
9 changes: 0 additions & 9 deletions test/extended/node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ This directory contains OpenShift end-to-end tests for node-related features.
### Suite: openshift/disruptive-longrunning

- **kubeletconfig_features.go** - Tests applying KubeletConfig to custom machine config pools, requires node reboots

### Suite: openshift/usernamespace

- **nested_container.go** - Tests running nested containers (podman-in-pod) with user namespaces and nested-container SCC

### Default Suite
Expand Down Expand Up @@ -53,12 +50,6 @@ To run only node-specific long-running disruptive tests:
./openshift-tests run "openshift/disruptive-longrunning" --dry-run | grep "\[sig-node\]" | ./openshift-tests run -f - --cluster-stability=Disruptive
```

### Running User Namespace Tests

```bash
./openshift-tests run "openshift/usernamespace"
```

## Prerequisites

- Make sure to set `oc` binary to match the cluster version
Expand Down
2 changes: 1 addition & 1 deletion test/extended/node/nested_container.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"k8s.io/utils/ptr"
)

var _ = g.Describe("[Suite:openshift/usernamespace] [sig-node] [FeatureGate:ProcMountType] [FeatureGate:UserNamespacesSupport] nested container", func() {
var _ = g.Describe("[Suite:openshift/disruptive-longrunning] [sig-node] [FeatureGate:ProcMountType] [FeatureGate:UserNamespacesSupport] nested container", func() {
oc := exutil.NewCLIWithPodSecurityLevel("nested-podman", admissionapi.LevelBaseline)
g.It("should pass podman localsystem test in baseline mode",
func(ctx context.Context) {
Expand Down