Drop conformance for a HostPath test

Signed-off-by: Davanum Srinivas <davanum@gmail.com>
This commit is contained in:
Davanum Srinivas 2020-05-07 16:36:57 -04:00
parent 9f76518c40
commit b64e904ca8
No known key found for this signature in database
GPG Key ID: 80D83A796103BF59
2 changed files with 3 additions and 13 deletions

View File

@ -2245,15 +2245,6 @@
able to start with Secret and ConfigMap volumes mounted into the container. able to start with Secret and ConfigMap volumes mounted into the container.
release: v1.13 release: v1.13
file: test/e2e/storage/empty_dir_wrapper.go 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 - testname: Projected Volume, multiple projections
codename: '[sig-storage] Projected combined should project all components that make codename: '[sig-storage] Projected combined should project all components that make
up the projection API [Projection][NodeConformance] [Conformance]' up the projection API [Projection][NodeConformance] [Conformance]'

View File

@ -41,12 +41,11 @@ var _ = ginkgo.Describe("[sig-storage] HostPath", func() {
}) })
/* /*
Release : v1.9 Host path, volume mode default
Testname: 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.
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). 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{ source := &v1.HostPathVolumeSource{
Path: "/tmp", Path: "/tmp",
} }