mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 23:37:01 +00:00
Merge pull request #127364 from aojea/e2e_tag_networks
Fix e2e tests tags
This commit is contained in:
commit
af2bf2d8f1
6
test/conformance/testdata/conformance.yaml
vendored
6
test/conformance/testdata/conformance.yaml
vendored
@ -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"
|
||||
|
@ -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{
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user