diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index 54390da8e36..d820837e8a6 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -2245,15 +2245,6 @@ able to start with Secret and ConfigMap volumes mounted into the container. release: v1.13 file: test/e2e/storage/empty_dir_wrapper.go -- testname: Host path, volume mode default - codename: '[sig-storage] HostPath should give a volume the correct mode [LinuxOnly] - [NodeConformance] [Conformance]' - description: Create a Pod with host volume mounted. The volume mounted MUST be a - directory with permissions mode -rwxrwxrwx and that is has the sticky bit (mode - flag t) set. This test is marked LinuxOnly since Windows does not support setting - the sticky bit (mode flag t). - release: v1.9 - file: test/e2e/common/host_path.go - testname: Projected Volume, multiple projections codename: '[sig-storage] Projected combined should project all components that make up the projection API [Projection][NodeConformance] [Conformance]' diff --git a/test/e2e/common/host_path.go b/test/e2e/common/host_path.go index 2fde82474d7..e90e699ae94 100644 --- a/test/e2e/common/host_path.go +++ b/test/e2e/common/host_path.go @@ -41,12 +41,11 @@ var _ = ginkgo.Describe("[sig-storage] HostPath", func() { }) /* - Release : v1.9 - Testname: Host path, volume mode default - Description: Create a Pod with host volume mounted. The volume mounted MUST be a directory with permissions mode -rwxrwxrwx and that is has the sticky bit (mode flag t) set. + Host path, volume mode default + Create a Pod with host volume mounted. The volume mounted MUST be a directory with permissions mode -rwxrwxrwx and that is has the sticky bit (mode flag t) set. This test is marked LinuxOnly since Windows does not support setting the sticky bit (mode flag t). */ - framework.ConformanceIt("should give a volume the correct mode [LinuxOnly] [NodeConformance]", func() { + ginkgo.It("should give a volume the correct mode [LinuxOnly] [NodeConformance]", func() { source := &v1.HostPathVolumeSource{ Path: "/tmp", }