diff --git a/test/e2e/common/configmap_volume.go b/test/e2e/common/configmap_volume.go index a4918611d2..66b7874926 100644 --- a/test/e2e/common/configmap_volume.go +++ b/test/e2e/common/configmap_volume.go @@ -51,7 +51,7 @@ var _ = Describe("[sig-storage] ConfigMap", func() { doConfigMapE2EWithoutMappings(f, 0, 0, &defaultMode) }) - It("should be consumable from pods in volume as non-root with defaultMode and fsGroup set [Feature:FSGroup]", func() { + It("should be consumable from pods in volume as non-root with defaultMode and fsGroup set", func() { defaultMode := int32(0440) /* setting fsGroup sets mode to at least 440 */ doConfigMapE2EWithoutMappings(f, 1000, 1001, &defaultMode) }) @@ -65,7 +65,7 @@ var _ = Describe("[sig-storage] ConfigMap", func() { doConfigMapE2EWithoutMappings(f, 1000, 0, nil) }) - It("should be consumable from pods in volume as non-root with FSGroup [Feature:FSGroup]", func() { + It("should be consumable from pods in volume as non-root with FSGroup", func() { doConfigMapE2EWithoutMappings(f, 1000, 1001, nil) }) @@ -97,7 +97,7 @@ var _ = Describe("[sig-storage] ConfigMap", func() { doConfigMapE2EWithMappings(f, 1000, 0, nil) }) - It("should be consumable from pods in volume with mappings as non-root with FSGroup [Feature:FSGroup]", func() { + It("should be consumable from pods in volume with mappings as non-root with FSGroup", func() { doConfigMapE2EWithMappings(f, 1000, 1001, nil) }) diff --git a/test/e2e/common/downwardapi_volume.go b/test/e2e/common/downwardapi_volume.go index 3709b318ec..595436d72b 100644 --- a/test/e2e/common/downwardapi_volume.go +++ b/test/e2e/common/downwardapi_volume.go @@ -83,7 +83,7 @@ var _ = Describe("[sig-storage] Downward API volume", func() { }) }) - It("should provide podname as non-root with fsgroup [Feature:FSGroup]", func() { + It("should provide podname as non-root with fsgroup", func() { podName := "metadata-volume-" + string(uuid.NewUUID()) uid := int64(1001) gid := int64(1234) @@ -97,7 +97,7 @@ var _ = Describe("[sig-storage] Downward API volume", func() { }) }) - It("should provide podname as non-root with fsgroup and defaultMode [Feature:FSGroup]", func() { + It("should provide podname as non-root with fsgroup and defaultMode", func() { podName := "metadata-volume-" + string(uuid.NewUUID()) uid := int64(1001) gid := int64(1234) diff --git a/test/e2e/common/projected.go b/test/e2e/common/projected.go index 099d2ecc47..9ad9c39ded 100644 --- a/test/e2e/common/projected.go +++ b/test/e2e/common/projected.go @@ -419,7 +419,7 @@ var _ = Describe("[sig-storage] Projected", func() { doProjectedConfigMapE2EWithoutMappings(f, 0, 0, &defaultMode) }) - It("should be consumable from pods in volume as non-root with defaultMode and fsGroup set [Feature:FSGroup]", func() { + It("should be consumable from pods in volume as non-root with defaultMode and fsGroup set", func() { defaultMode := int32(0440) /* setting fsGroup sets mode to at least 440 */ doProjectedConfigMapE2EWithoutMappings(f, 1000, 1001, &defaultMode) }) @@ -433,7 +433,7 @@ var _ = Describe("[sig-storage] Projected", func() { doProjectedConfigMapE2EWithoutMappings(f, 1000, 0, nil) }) - It("should be consumable from pods in volume as non-root with FSGroup [Feature:FSGroup]", func() { + It("should be consumable from pods in volume as non-root with FSGroup", func() { doProjectedConfigMapE2EWithoutMappings(f, 1000, 1001, nil) }) @@ -466,7 +466,7 @@ var _ = Describe("[sig-storage] Projected", func() { doProjectedConfigMapE2EWithMappings(f, 1000, 0, nil) }) - It("should be consumable from pods in volume with mappings as non-root with FSGroup [Feature:FSGroup]", func() { + It("should be consumable from pods in volume with mappings as non-root with FSGroup", func() { doProjectedConfigMapE2EWithMappings(f, 1000, 1001, nil) }) @@ -904,7 +904,7 @@ var _ = Describe("[sig-storage] Projected", func() { }) }) - It("should provide podname as non-root with fsgroup [Feature:FSGroup]", func() { + It("should provide podname as non-root with fsgroup", func() { podName := "metadata-volume-" + string(uuid.NewUUID()) uid := int64(1001) gid := int64(1234) @@ -918,7 +918,7 @@ var _ = Describe("[sig-storage] Projected", func() { }) }) - It("should provide podname as non-root with fsgroup and defaultMode [Feature:FSGroup]", func() { + It("should provide podname as non-root with fsgroup and defaultMode", func() { podName := "metadata-volume-" + string(uuid.NewUUID()) uid := int64(1001) gid := int64(1234)