diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index f8c50c699dc..dd710f6e04b 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -2656,21 +2656,21 @@ file: test/e2e/common/node/expansion.go - testname: VolumeSubpathEnvExpansion, subpath with absolute path codename: '[sig-node] Variable Expansion should fail substituting values in a volume - subpath with absolute path [Slow] [Conformance]' + subpath with absolute path [Conformance]' description: Make sure a container's subpath can not be set using an expansion of environment variables when absolute path is supplied. release: v1.19 file: test/e2e/common/node/expansion.go - testname: VolumeSubpathEnvExpansion, subpath with backticks codename: '[sig-node] Variable Expansion should fail substituting values in a volume - subpath with backticks [Slow] [Conformance]' + subpath with backticks [Conformance]' description: Make sure a container's subpath can not be set using an expansion of environment variables when backticks are supplied. release: v1.19 file: test/e2e/common/node/expansion.go - testname: VolumeSubpathEnvExpansion, subpath test writes codename: '[sig-node] Variable Expansion should succeed in writing subpaths in container - [Slow] [Conformance]' + [Conformance]' description: "Verify that a subpath expansion can be used to write files into subpaths. 1.\tvalid subpathexpr starts a container running 2.\ttest for valid subpath writes 3.\tsuccessful expansion of the subpathexpr isn't required for volume cleanup" diff --git a/test/e2e/common/node/expansion.go b/test/e2e/common/node/expansion.go index 48f6f410e5e..6417ff9ff4c 100644 --- a/test/e2e/common/node/expansion.go +++ b/test/e2e/common/node/expansion.go @@ -153,7 +153,7 @@ var _ = SIGDescribe("Variable Expansion", func() { Testname: VolumeSubpathEnvExpansion, subpath with backticks Description: Make sure a container's subpath can not be set using an expansion of environment variables when backticks are supplied. */ - framework.ConformanceIt("should fail substituting values in a volume subpath with backticks", f.WithSlow(), func(ctx context.Context) { + framework.ConformanceIt("should fail substituting values in a volume subpath with backticks", func(ctx context.Context) { envVars := []v1.EnvVar{ { @@ -187,7 +187,7 @@ var _ = SIGDescribe("Variable Expansion", func() { Testname: VolumeSubpathEnvExpansion, subpath with absolute path Description: Make sure a container's subpath can not be set using an expansion of environment variables when absolute path is supplied. */ - framework.ConformanceIt("should fail substituting values in a volume subpath with absolute path", f.WithSlow(), func(ctx context.Context) { + framework.ConformanceIt("should fail substituting values in a volume subpath with absolute path", func(ctx context.Context) { absolutePath := "/tmp" if framework.NodeOSDistroIs("windows") { // Windows does not typically have a C:\tmp folder. @@ -298,7 +298,7 @@ var _ = SIGDescribe("Variable Expansion", func() { 3. successful expansion of the subpathexpr isn't required for volume cleanup */ - framework.ConformanceIt("should succeed in writing subpaths in container", f.WithSlow(), func(ctx context.Context) { + framework.ConformanceIt("should succeed in writing subpaths in container", func(ctx context.Context) { envVars := []v1.EnvVar{ {