Remove feature tag from dynamic provisioning topology tests

This commit is contained in:
Michelle Au 2018-08-29 13:43:53 -07:00
parent 34d75d774e
commit a1154682da
2 changed files with 6 additions and 6 deletions

View File

@ -66,15 +66,15 @@ var _ = utils.SIGDescribe("Regional PD", func() {
testVolumeProvisioning(c, ns) testVolumeProvisioning(c, ns)
}) })
It("should provision storage with delayed binding [Slow] [Feature:DynamicProvisioningScheduling]", func() { It("should provision storage with delayed binding [Slow]", func() {
testRegionalDelayedBinding(c, ns) testRegionalDelayedBinding(c, ns)
}) })
It("should provision storage in the allowedTopologies [Slow] [Feature:DynamicProvisioningScheduling]", func() { It("should provision storage in the allowedTopologies [Slow]", func() {
testRegionalAllowedTopologies(c, ns) testRegionalAllowedTopologies(c, ns)
}) })
It("should provision storage in the allowedTopologies with delayed binding [Slow] [Feature:DynamicProvisioningScheduling]", func() { It("should provision storage in the allowedTopologies with delayed binding [Slow]", func() {
testRegionalAllowedTopologiesWithDelayedBinding(c, ns) testRegionalAllowedTopologiesWithDelayedBinding(c, ns)
}) })

View File

@ -984,7 +984,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() {
Expect(err).NotTo(HaveOccurred()) Expect(err).NotTo(HaveOccurred())
}) })
}) })
Describe("DynamicProvisioner delayed binding [Feature:DynamicProvisioningScheduling] [Slow]", func() { Describe("DynamicProvisioner delayed binding [Slow]", func() {
It("should create a persistent volume in the same zone as node after a pod mounting the claim is started", func() { It("should create a persistent volume in the same zone as node after a pod mounting the claim is started", func() {
tests := []storageClassTest{ tests := []storageClassTest{
{ {
@ -1024,7 +1024,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() {
} }
}) })
}) })
Describe("DynamicProvisioner allowedTopologies [Feature:DynamicProvisioningScheduling]", func() { Describe("DynamicProvisioner allowedTopologies", func() {
It("should create persistent volume in the zone specified in allowedTopologies of storageclass", func() { It("should create persistent volume in the zone specified in allowedTopologies of storageclass", func() {
tests := []storageClassTest{ tests := []storageClassTest{
{ {
@ -1059,7 +1059,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() {
} }
}) })
}) })
Describe("DynamicProvisioner delayed binding with allowedTopologies [Feature:DynamicProvisioningScheduling] [Slow]", func() { Describe("DynamicProvisioner delayed binding with allowedTopologies [Slow]", func() {
It("should create persistent volume in the same zone as specified in allowedTopologies after a pod mounting the claim is started", func() { It("should create persistent volume in the same zone as specified in allowedTopologies after a pod mounting the claim is started", func() {
tests := []storageClassTest{ tests := []storageClassTest{
{ {