Merge pull request #90861 from dims/drop-conformance-tag-for-a-hostpath-test

Remove [Conformance] from "HostPath should give a volume the correct mode" test
This commit is contained in:
Kubernetes Prow Robot 2020-05-16 07:36:40 -07:00 committed by GitHub
commit 052f9c8e7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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",
} }