Merge pull request #127364 from aojea/e2e_tag_networks

Fix e2e tests tags
This commit is contained in:
Kubernetes Prow Robot 2024-09-15 16:23:13 +01:00 committed by GitHub
commit af2bf2d8f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -2656,21 +2656,21 @@
file: test/e2e/common/node/expansion.go file: test/e2e/common/node/expansion.go
- testname: VolumeSubpathEnvExpansion, subpath with absolute path - testname: VolumeSubpathEnvExpansion, subpath with absolute path
codename: '[sig-node] Variable Expansion should fail substituting values in a volume 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 description: Make sure a container's subpath can not be set using an expansion of
environment variables when absolute path is supplied. environment variables when absolute path is supplied.
release: v1.19 release: v1.19
file: test/e2e/common/node/expansion.go file: test/e2e/common/node/expansion.go
- testname: VolumeSubpathEnvExpansion, subpath with backticks - testname: VolumeSubpathEnvExpansion, subpath with backticks
codename: '[sig-node] Variable Expansion should fail substituting values in a volume 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 description: Make sure a container's subpath can not be set using an expansion of
environment variables when backticks are supplied. environment variables when backticks are supplied.
release: v1.19 release: v1.19
file: test/e2e/common/node/expansion.go file: test/e2e/common/node/expansion.go
- testname: VolumeSubpathEnvExpansion, subpath test writes - testname: VolumeSubpathEnvExpansion, subpath test writes
codename: '[sig-node] Variable Expansion should succeed in writing subpaths in container 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. 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 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" 3.\tsuccessful expansion of the subpathexpr isn't required for volume cleanup"

View File

@ -153,7 +153,7 @@ var _ = SIGDescribe("Variable Expansion", func() {
Testname: VolumeSubpathEnvExpansion, subpath with backticks 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. 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{ envVars := []v1.EnvVar{
{ {
@ -187,7 +187,7 @@ var _ = SIGDescribe("Variable Expansion", func() {
Testname: VolumeSubpathEnvExpansion, subpath with absolute path 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. 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" absolutePath := "/tmp"
if framework.NodeOSDistroIs("windows") { if framework.NodeOSDistroIs("windows") {
// Windows does not typically have a C:\tmp folder. // 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 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{ envVars := []v1.EnvVar{
{ {