@@ -155,11 +155,11 @@ var _ = framework.KubeDescribe("Variable Expansion", func() {
155
155
})
156
156
157
157
/*
158
- Testname: var-expansion-subpath
159
- Description: Make sure a container's subpath can be set using an
160
- expansion of environment variables.
158
+ Release : v1.19
159
+ Testname: VolumeSubpathEnvExpansion, subpath expansion
160
+ Description: Make sure a container's subpath can be set using an expansion of environment variables.
161
161
*/
162
- ginkgo . It ("should allow substituting values in a volume subpath [sig-storage]" , func () {
162
+ framework . ConformanceIt ("should allow substituting values in a volume subpath [sig-storage]" , func () {
163
163
podName := "var-expansion-" + string (uuid .NewUUID ())
164
164
pod := & v1.Pod {
165
165
ObjectMeta : metav1.ObjectMeta {
@@ -209,11 +209,11 @@ var _ = framework.KubeDescribe("Variable Expansion", func() {
209
209
})
210
210
211
211
/*
212
- Testname: var-expansion-subpath-with-backticks
213
- Description: Make sure a container's subpath can not be set using an
214
- expansion of environment variables when backticks are supplied.
212
+ Release : v1.19
213
+ Testname: VolumeSubpathEnvExpansion, subpath with backticks
214
+ Description: Make sure a container's subpath can not be set using an expansion of environment variables when backticks are supplied.
215
215
*/
216
- ginkgo . It ("should fail substituting values in a volume subpath with backticks [sig-storage][Slow]" , func () {
216
+ framework . ConformanceIt ("should fail substituting values in a volume subpath with backticks [sig-storage][Slow]" , func () {
217
217
218
218
podName := "var-expansion-" + string (uuid .NewUUID ())
219
219
pod := & v1.Pod {
@@ -258,11 +258,11 @@ var _ = framework.KubeDescribe("Variable Expansion", func() {
258
258
})
259
259
260
260
/*
261
- Testname: var-expansion-subpath-with-absolute-path
262
- Description: Make sure a container's subpath can not be set using an
263
- expansion of environment variables when absolute path is supplied.
261
+ Release : v1.19
262
+ Testname: VolumeSubpathEnvExpansion, subpath with absolute path
263
+ Description: Make sure a container's subpath can not be set using an expansion of environment variables when absolute path is supplied.
264
264
*/
265
- ginkgo . It ("should fail substituting values in a volume subpath with absolute path [sig-storage][Slow]" , func () {
265
+ framework . ConformanceIt ("should fail substituting values in a volume subpath with absolute path [sig-storage][Slow]" , func () {
266
266
267
267
podName := "var-expansion-" + string (uuid .NewUUID ())
268
268
pod := & v1.Pod {
@@ -307,10 +307,11 @@ var _ = framework.KubeDescribe("Variable Expansion", func() {
307
307
})
308
308
309
309
/*
310
- Testname: var-expansion-subpath-ready-from-failed-state
311
- Description: Verify that a failing subpath expansion can be modified during the lifecycle of a container.
310
+ Release : v1.19
311
+ Testname: VolumeSubpathEnvExpansion, subpath ready from failed state
312
+ Description: Verify that a failing subpath expansion can be modified during the lifecycle of a container.
312
313
*/
313
- ginkgo . It ("should verify that a failing subpath expansion can be modified during the lifecycle of a container [sig-storage][Slow]" , func () {
314
+ framework . ConformanceIt ("should verify that a failing subpath expansion can be modified during the lifecycle of a container [sig-storage][Slow]" , func () {
314
315
315
316
podName := "var-expansion-" + string (uuid .NewUUID ())
316
317
containerName := "dapi-container"
@@ -387,14 +388,15 @@ var _ = framework.KubeDescribe("Variable Expansion", func() {
387
388
})
388
389
389
390
/*
390
- Testname: var-expansion-subpath-test-writes
391
- Description: Verify that a subpath expansion can be used to write files into subpaths.
392
- 1. valid subpathexpr starts a container running
393
- 2. test for valid subpath writes
394
- 3. successful expansion of the subpathexpr isn't required for volume cleanup
391
+ Release : v1.19
392
+ Testname: VolumeSubpathEnvExpansion, subpath test writes
393
+ Description: Verify that a subpath expansion can be used to write files into subpaths.
394
+ 1. valid subpathexpr starts a container running
395
+ 2. test for valid subpath writes
396
+ 3. successful expansion of the subpathexpr isn't required for volume cleanup
395
397
396
398
*/
397
- ginkgo . It ("should succeed in writing subpaths in container [sig-storage][Slow]" , func () {
399
+ framework . ConformanceIt ("should succeed in writing subpaths in container [sig-storage][Slow]" , func () {
398
400
399
401
podName := "var-expansion-" + string (uuid .NewUUID ())
400
402
containerName := "dapi-container"
@@ -487,16 +489,16 @@ var _ = framework.KubeDescribe("Variable Expansion", func() {
487
489
})
488
490
489
491
/*
490
- Testname: var-expansion-subpath-lifecycle
491
- Description: Verify should not change the subpath mount on a container restart if the environment variable changes
492
- 1. valid subpathexpr starts a container running
493
- 2. test for valid subpath writes
494
- 3. container restarts
495
- 4. delete cleanly
496
-
492
+ Release : v1.19
493
+ Testname: VolumeSubpathEnvExpansion, subpath lifecycle
494
+ Description: Verify should not change the subpath mount on a container restart if the environment variable changes
495
+ 1. valid subpathexpr starts a container running
496
+ 2. test for valid subpath writes
497
+ 3. container restarts
498
+ 4. delete cleanly
497
499
*/
498
500
499
- ginkgo . It ("should not change the subpath mount on a container restart if the environment variable changes [sig-storage][Slow]" , func () {
501
+ framework . ConformanceIt ("should not change the subpath mount on a container restart if the environment variable changes [sig-storage][Slow]" , func () {
500
502
501
503
suffix := string (uuid .NewUUID ())
502
504
podName := fmt .Sprintf ("var-expansion-%s" , suffix )
0 commit comments