From 22d79b998a8b36bba80bc8a55c136014e8e17d5c Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Sat, 14 Sep 2024 19:06:21 +0000 Subject: [PATCH] remove e2e slow tag for VolumeSubpathEnvExpansion Kubernetes e2e suite: [It] [sig-node] Variable Expansion should fail substituting values in a volume subpath with absolute path [Slow] [Conformance] test takes 37 seconds to run --- test/conformance/testdata/conformance.yaml | 2 +- test/e2e/common/node/expansion.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index 0cde76de6fa..386b7864aec 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -2656,7 +2656,7 @@ 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 diff --git a/test/e2e/common/node/expansion.go b/test/e2e/common/node/expansion.go index 0d8e7eaedfc..68613cfd87e 100644 --- a/test/e2e/common/node/expansion.go +++ b/test/e2e/common/node/expansion.go @@ -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.