Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
e53ba827
Commit
e53ba827
authored
Jul 18, 2017
by
Michelle Au
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup storage e2e test names by removing redundant [sig-storage] tags and [Volume] tags
parent
088141ca
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
+15
-15
persistent_volumes-gce.go
test/e2e/storage/persistent_volumes-gce.go
+1
-1
persistent_volumes.go
test/e2e/storage/persistent_volumes.go
+1
-1
volume_provisioning.go
test/e2e/storage/volume_provisioning.go
+3
-3
volumes.go
test/e2e/storage/volumes.go
+10
-10
No files found.
test/e2e/storage/persistent_volumes-gce.go
View file @
e53ba827
...
@@ -51,7 +51,7 @@ func initializeGCETestSpec(c clientset.Interface, ns string, pvConfig framework.
...
@@ -51,7 +51,7 @@ func initializeGCETestSpec(c clientset.Interface, ns string, pvConfig framework.
}
}
// Testing configurations of single a PV/PVC pair attached to a GCE PD
// Testing configurations of single a PV/PVC pair attached to a GCE PD
var
_
=
SIGDescribe
(
"PersistentVolumes
:
GCEPD"
,
func
()
{
var
_
=
SIGDescribe
(
"PersistentVolumes
GCEPD"
,
func
()
{
var
(
var
(
c
clientset
.
Interface
c
clientset
.
Interface
diskName
string
diskName
string
...
...
test/e2e/storage/persistent_volumes.go
View file @
e53ba827
...
@@ -111,7 +111,7 @@ var _ = SIGDescribe("PersistentVolumes", func() {
...
@@ -111,7 +111,7 @@ var _ = SIGDescribe("PersistentVolumes", func() {
// Testing configurations of a single a PV/PVC pair, multiple evenly paired PVs/PVCs,
// Testing configurations of a single a PV/PVC pair, multiple evenly paired PVs/PVCs,
// and multiple unevenly paired PV/PVCs
// and multiple unevenly paired PV/PVCs
SIGDescribe
(
"PersistentVolumes:
NFS"
,
func
()
{
Describe
(
"
NFS"
,
func
()
{
var
(
var
(
nfsServerPod
*
v1
.
Pod
nfsServerPod
*
v1
.
Pod
...
...
test/e2e/storage/volume_provisioning.go
View file @
e53ba827
...
@@ -223,7 +223,7 @@ var _ = SIGDescribe("Dynamic Provisioning", func() {
...
@@ -223,7 +223,7 @@ var _ = SIGDescribe("Dynamic Provisioning", func() {
ns
=
f
.
Namespace
.
Name
ns
=
f
.
Namespace
.
Name
})
})
SIG
Describe
(
"DynamicProvisioner"
,
func
()
{
Describe
(
"DynamicProvisioner"
,
func
()
{
It
(
"should provision storage with different parameters [Slow]"
,
func
()
{
It
(
"should provision storage with different parameters [Slow]"
,
func
()
{
cloudZone
:=
getRandomCloudZone
(
c
)
cloudZone
:=
getRandomCloudZone
(
c
)
...
@@ -517,7 +517,7 @@ var _ = SIGDescribe("Dynamic Provisioning", func() {
...
@@ -517,7 +517,7 @@ var _ = SIGDescribe("Dynamic Provisioning", func() {
})
})
})
})
SIG
Describe
(
"DynamicProvisioner External"
,
func
()
{
Describe
(
"DynamicProvisioner External"
,
func
()
{
It
(
"should let an external dynamic provisioner create and delete persistent volumes [Slow]"
,
func
()
{
It
(
"should let an external dynamic provisioner create and delete persistent volumes [Slow]"
,
func
()
{
// external dynamic provisioner pods need additional permissions provided by the
// external dynamic provisioner pods need additional permissions provided by the
// persistent-volume-provisioner role
// persistent-volume-provisioner role
...
@@ -555,7 +555,7 @@ var _ = SIGDescribe("Dynamic Provisioning", func() {
...
@@ -555,7 +555,7 @@ var _ = SIGDescribe("Dynamic Provisioning", func() {
})
})
})
})
SIG
Describe
(
"DynamicProvisioner Default"
,
func
()
{
Describe
(
"DynamicProvisioner Default"
,
func
()
{
It
(
"should create and delete default persistent volumes [Slow]"
,
func
()
{
It
(
"should create and delete default persistent volumes [Slow]"
,
func
()
{
framework
.
SkipUnlessProviderIs
(
"openstack"
,
"gce"
,
"aws"
,
"gke"
,
"vsphere"
,
"azure"
)
framework
.
SkipUnlessProviderIs
(
"openstack"
,
"gce"
,
"aws"
,
"gke"
,
"vsphere"
,
"azure"
)
...
...
test/e2e/storage/volumes.go
View file @
e53ba827
...
@@ -98,7 +98,7 @@ var _ = SIGDescribe("Volumes", func() {
...
@@ -98,7 +98,7 @@ var _ = SIGDescribe("Volumes", func() {
// NFS
// NFS
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
SIG
Describe
(
"NFS"
,
func
()
{
Describe
(
"NFS"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
config
,
_
,
serverIP
:=
framework
.
NewNFSServer
(
cs
,
namespace
.
Name
,
[]
string
{})
config
,
_
,
serverIP
:=
framework
.
NewNFSServer
(
cs
,
namespace
.
Name
,
[]
string
{})
defer
func
()
{
defer
func
()
{
...
@@ -129,7 +129,7 @@ var _ = SIGDescribe("Volumes", func() {
...
@@ -129,7 +129,7 @@ var _ = SIGDescribe("Volumes", func() {
// Gluster
// Gluster
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
SIG
Describe
(
"GlusterFS"
,
func
()
{
Describe
(
"GlusterFS"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
//TODO (copejon) GFS is not supported on debian image.
//TODO (copejon) GFS is not supported on debian image.
framework
.
SkipUnlessNodeOSDistroIs
(
"gci"
)
framework
.
SkipUnlessNodeOSDistroIs
(
"gci"
)
...
@@ -172,7 +172,7 @@ var _ = SIGDescribe("Volumes", func() {
...
@@ -172,7 +172,7 @@ var _ = SIGDescribe("Volumes", func() {
// are installed on all nodes!
// are installed on all nodes!
// Run the test with "go run hack/e2e.go ... --ginkgo.focus=iSCSI"
// Run the test with "go run hack/e2e.go ... --ginkgo.focus=iSCSI"
SIG
Describe
(
"iSCSI [Feature:Volumes]"
,
func
()
{
Describe
(
"iSCSI [Feature:Volumes]"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
config
,
_
,
serverIP
:=
framework
.
NewISCSIServer
(
cs
,
namespace
.
Name
)
config
,
_
,
serverIP
:=
framework
.
NewISCSIServer
(
cs
,
namespace
.
Name
)
defer
func
()
{
defer
func
()
{
...
@@ -206,7 +206,7 @@ var _ = SIGDescribe("Volumes", func() {
...
@@ -206,7 +206,7 @@ var _ = SIGDescribe("Volumes", func() {
// Ceph RBD
// Ceph RBD
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
SIG
Describe
(
"Ceph RBD [Feature:Volumes]"
,
func
()
{
Describe
(
"Ceph RBD [Feature:Volumes]"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
config
,
_
,
serverIP
:=
framework
.
NewRBDServer
(
cs
,
namespace
.
Name
)
config
,
_
,
serverIP
:=
framework
.
NewRBDServer
(
cs
,
namespace
.
Name
)
defer
func
()
{
defer
func
()
{
...
@@ -270,7 +270,7 @@ var _ = SIGDescribe("Volumes", func() {
...
@@ -270,7 +270,7 @@ var _ = SIGDescribe("Volumes", func() {
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
// Ceph
// Ceph
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
SIG
Describe
(
"CephFS [Feature:Volumes]"
,
func
()
{
Describe
(
"CephFS [Feature:Volumes]"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
config
:=
framework
.
VolumeTestConfig
{
config
:=
framework
.
VolumeTestConfig
{
Namespace
:
namespace
.
Name
,
Namespace
:
namespace
.
Name
,
...
@@ -345,7 +345,7 @@ var _ = SIGDescribe("Volumes", func() {
...
@@ -345,7 +345,7 @@ var _ = SIGDescribe("Volumes", func() {
// (/usr/bin/nova, /usr/bin/cinder and /usr/bin/keystone)
// (/usr/bin/nova, /usr/bin/cinder and /usr/bin/keystone)
// and that the usual OpenStack authentication env. variables are set
// and that the usual OpenStack authentication env. variables are set
// (OS_USERNAME, OS_PASSWORD, OS_TENANT_NAME at least).
// (OS_USERNAME, OS_PASSWORD, OS_TENANT_NAME at least).
SIG
Describe
(
"Cinder [Feature:Volumes]"
,
func
()
{
Describe
(
"Cinder [Feature:Volumes]"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
framework
.
SkipUnlessProviderIs
(
"openstack"
)
framework
.
SkipUnlessProviderIs
(
"openstack"
)
config
:=
framework
.
VolumeTestConfig
{
config
:=
framework
.
VolumeTestConfig
{
...
@@ -420,7 +420,7 @@ var _ = SIGDescribe("Volumes", func() {
...
@@ -420,7 +420,7 @@ var _ = SIGDescribe("Volumes", func() {
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
// GCE PD
// GCE PD
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
SIG
Describe
(
"PD"
,
func
()
{
Describe
(
"PD"
,
func
()
{
// Flaky issue: #43977
// Flaky issue: #43977
It
(
"should be mountable [Flaky]"
,
func
()
{
It
(
"should be mountable [Flaky]"
,
func
()
{
framework
.
SkipUnlessProviderIs
(
"gce"
,
"gke"
)
framework
.
SkipUnlessProviderIs
(
"gce"
,
"gke"
)
...
@@ -473,7 +473,7 @@ var _ = SIGDescribe("Volumes", func() {
...
@@ -473,7 +473,7 @@ var _ = SIGDescribe("Volumes", func() {
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
// ConfigMap
// ConfigMap
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
SIG
Describe
(
"ConfigMap"
,
func
()
{
Describe
(
"ConfigMap"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
config
:=
framework
.
VolumeTestConfig
{
config
:=
framework
.
VolumeTestConfig
{
Namespace
:
namespace
.
Name
,
Namespace
:
namespace
.
Name
,
...
@@ -550,7 +550,7 @@ var _ = SIGDescribe("Volumes", func() {
...
@@ -550,7 +550,7 @@ var _ = SIGDescribe("Volumes", func() {
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
// vSphere
// vSphere
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
SIG
Describe
(
"vsphere [Feature:Volumes]"
,
func
()
{
Describe
(
"vsphere [Feature:Volumes]"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
It
(
"should be mountable"
,
func
()
{
framework
.
SkipUnlessProviderIs
(
"vsphere"
)
framework
.
SkipUnlessProviderIs
(
"vsphere"
)
var
(
var
(
...
@@ -603,7 +603,7 @@ var _ = SIGDescribe("Volumes", func() {
...
@@ -603,7 +603,7 @@ var _ = SIGDescribe("Volumes", func() {
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
// Azure Disk
// Azure Disk
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
SIG
Describe
(
"Azure Disk [Feature:Volumes]"
,
func
()
{
Describe
(
"Azure Disk [Feature:Volumes]"
,
func
()
{
It
(
"should be mountable [Slow]"
,
func
()
{
It
(
"should be mountable [Slow]"
,
func
()
{
framework
.
SkipUnlessProviderIs
(
"azure"
)
framework
.
SkipUnlessProviderIs
(
"azure"
)
config
:=
framework
.
VolumeTestConfig
{
config
:=
framework
.
VolumeTestConfig
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment