You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//The pod is in pending during volume creation until the configMap objects are available
553
-
//or until mount the configMap volume times out. There is no configMap object defined for the pod, so it should return timout exception unless it is marked optional.
554
-
//Slow (~5 mins)
553
+
// It should be forbidden to change data for configmaps marked as immutable, but
554
+
// allowed to modify its metadata independently of its state.
555
+
ginkgo.It("should be immutable if `immutable` field is set [Feature:ImmutableEphemeralVolume]", func() {
framework.ExpectNoError(err, "Failed to delete config map %q in namespace %q", configMap.Name, configMap.Namespace)
597
+
})
598
+
599
+
// The pod is in pending during volume creation until the configMap objects are available
600
+
// or until mount the configMap volume times out. There is no configMap object defined for the pod, so it should return timout exception unless it is marked optional.
601
+
// Slow (~5 mins)
555
602
ginkgo.It("Should fail non-optional pod creation due to configMap object does not exist [Slow]", func() {
//The secret is in pending during volume creation until the secret objects are available
372
-
//or until mount the secret volume times out. There is no secret object defined for the pod, so it should return timout exception unless it is marked optional.
373
-
//Slow (~5 mins)
372
+
// It should be forbidden to change data for secrets marked as immutable, but
373
+
// allowed to modify its metadata independently of its state.
374
+
ginkgo.It("should be immutable if `immutable` field is set [Feature:ImmutableEphemeralVolume]", func() {
framework.ExpectNoError(err, "Failed to delete secret %q in namespace %q", secret.Name, secret.Namespace)
416
+
})
417
+
418
+
// The secret is in pending during volume creation until the secret objects are available
419
+
// or until mount the secret volume times out. There is no secret object defined for the pod, so it should return timout exception unless it is marked optional.
420
+
// Slow (~5 mins)
374
421
ginkgo.It("Should fail non-optional pod creation due to secret object does not exist [Slow]", func() {
0 commit comments