mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 21:47:07 +00:00
Merge pull request #50054 from msau42/e2e-cleanup
Automatic merge from submit-queue (batch tested with PRs 48532, 50054, 50082) Remove [k8s.io] tag and redundant [sig-storage] tags from volume tests **What this PR does / why we need it**: Removes redundant tags from storage e2e test names **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #50178 **Release note**: /release-note-none
This commit is contained in:
commit
40b4f77ab4
@ -53,7 +53,7 @@ import (
|
|||||||
|
|
||||||
// These tests need privileged containers, which are disabled by default. Run
|
// These tests need privileged containers, which are disabled by default. Run
|
||||||
// the test with "go run hack/e2e.go ... --ginkgo.focus=[Feature:Volumes]"
|
// the test with "go run hack/e2e.go ... --ginkgo.focus=[Feature:Volumes]"
|
||||||
var _ = framework.KubeDescribe("[sig-storage] GCP Volumes", func() {
|
var _ = Describe("[sig-storage] GCP Volumes", func() {
|
||||||
f := framework.NewDefaultFramework("gcp-volume")
|
f := framework.NewDefaultFramework("gcp-volume")
|
||||||
|
|
||||||
// If 'false', the test won't clear its volumes upon completion. Useful for debugging,
|
// If 'false', the test won't clear its volumes upon completion. Useful for debugging,
|
||||||
@ -73,7 +73,7 @@ var _ = framework.KubeDescribe("[sig-storage] GCP Volumes", func() {
|
|||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
// NFS
|
// NFS
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
framework.KubeDescribe("NFSv4", func() {
|
Describe("NFSv4", func() {
|
||||||
It("should be mountable for NFSv4", func() {
|
It("should be mountable for NFSv4", func() {
|
||||||
config, _, serverIP := framework.NewNFSServer(c, namespace.Name, []string{})
|
config, _, serverIP := framework.NewNFSServer(c, namespace.Name, []string{})
|
||||||
defer func() {
|
defer func() {
|
||||||
@ -101,7 +101,7 @@ var _ = framework.KubeDescribe("[sig-storage] GCP Volumes", func() {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
framework.KubeDescribe("NFSv3", func() {
|
Describe("NFSv3", func() {
|
||||||
It("should be mountable for NFSv3", func() {
|
It("should be mountable for NFSv3", func() {
|
||||||
config, _, serverIP := framework.NewNFSServer(c, namespace.Name, []string{})
|
config, _, serverIP := framework.NewNFSServer(c, namespace.Name, []string{})
|
||||||
defer func() {
|
defer func() {
|
||||||
@ -131,7 +131,7 @@ var _ = framework.KubeDescribe("[sig-storage] GCP Volumes", func() {
|
|||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
// Gluster
|
// Gluster
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
framework.KubeDescribe("GlusterFS", func() {
|
Describe("GlusterFS", func() {
|
||||||
It("should be mountable", func() {
|
It("should be mountable", func() {
|
||||||
// create gluster server and endpoints
|
// create gluster server and endpoints
|
||||||
config, _, _ := framework.NewGlusterfsServer(c, namespace.Name)
|
config, _, _ := framework.NewGlusterfsServer(c, namespace.Name)
|
||||||
|
@ -243,7 +243,7 @@ var _ = SIGDescribe("Volume plugin streaming [Slow]", func() {
|
|||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
// NFS
|
// NFS
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
SIGDescribe("NFS", func() {
|
Describe("NFS", func() {
|
||||||
testFile := "nfs_io_test"
|
testFile := "nfs_io_test"
|
||||||
// client pod uses selinux
|
// client pod uses selinux
|
||||||
podSec := v1.PodSecurityContext{
|
podSec := v1.PodSecurityContext{
|
||||||
@ -279,7 +279,7 @@ var _ = SIGDescribe("Volume plugin streaming [Slow]", func() {
|
|||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
// Gluster
|
// Gluster
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
SIGDescribe("GlusterFS", func() {
|
Describe("GlusterFS", func() {
|
||||||
var name string
|
var name string
|
||||||
testFile := "gluster_io_test"
|
testFile := "gluster_io_test"
|
||||||
|
|
||||||
@ -325,7 +325,7 @@ var _ = SIGDescribe("Volume plugin streaming [Slow]", func() {
|
|||||||
// iSCSI
|
// iSCSI
|
||||||
// The iscsiadm utility and iscsi target kernel modules must be installed on all nodes.
|
// The iscsiadm utility and iscsi target kernel modules must be installed on all nodes.
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
SIGDescribe("iSCSI [Feature:Volumes]", func() {
|
Describe("iSCSI [Feature:Volumes]", func() {
|
||||||
testFile := "iscsi_io_test"
|
testFile := "iscsi_io_test"
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
@ -362,7 +362,7 @@ var _ = SIGDescribe("Volume plugin streaming [Slow]", func() {
|
|||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
// Ceph RBD
|
// Ceph RBD
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
SIGDescribe("Ceph-RBD [Feature:Volumes]", func() {
|
Describe("Ceph-RBD [Feature:Volumes]", func() {
|
||||||
var (
|
var (
|
||||||
secret *v1.Secret
|
secret *v1.Secret
|
||||||
name string
|
name string
|
||||||
|
Loading…
Reference in New Issue
Block a user