Skip to content

Commit 39ea20a

Browse files
author
Kubernetes Submit Queue
authored
Merge pull request kubernetes#68034 from msau42/remove-feature-tag
Automatic merge from submit-queue (batch tested with PRs 67764, 68034, 67836). If you want to cherry-pick this change to another branch, please follow the instructions here: https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md. Remove feature tag from dynamic provisioning topology tests **What this PR does / why we need it**: Now that the feature has been moved to beta, remove feature tag to let it run in the standard CI suite. **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
2 parents b61bb1f + a115468 commit 39ea20a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

test/e2e/storage/regional_pd.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ var _ = utils.SIGDescribe("Regional PD", func() {
6666
testVolumeProvisioning(c, ns)
6767
})
6868

69-
It("should provision storage with delayed binding [Slow] [Feature:DynamicProvisioningScheduling]", func() {
69+
It("should provision storage with delayed binding [Slow]", func() {
7070
testRegionalDelayedBinding(c, ns)
7171
})
7272

73-
It("should provision storage in the allowedTopologies [Slow] [Feature:DynamicProvisioningScheduling]", func() {
73+
It("should provision storage in the allowedTopologies [Slow]", func() {
7474
testRegionalAllowedTopologies(c, ns)
7575
})
7676

77-
It("should provision storage in the allowedTopologies with delayed binding [Slow] [Feature:DynamicProvisioningScheduling]", func() {
77+
It("should provision storage in the allowedTopologies with delayed binding [Slow]", func() {
7878
testRegionalAllowedTopologiesWithDelayedBinding(c, ns)
7979
})
8080

test/e2e/storage/volume_provisioning.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() {
984984
Expect(err).NotTo(HaveOccurred())
985985
})
986986
})
987-
Describe("DynamicProvisioner delayed binding [Feature:DynamicProvisioningScheduling] [Slow]", func() {
987+
Describe("DynamicProvisioner delayed binding [Slow]", func() {
988988
It("should create a persistent volume in the same zone as node after a pod mounting the claim is started", func() {
989989
tests := []storageClassTest{
990990
{
@@ -1024,7 +1024,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() {
10241024
}
10251025
})
10261026
})
1027-
Describe("DynamicProvisioner allowedTopologies [Feature:DynamicProvisioningScheduling]", func() {
1027+
Describe("DynamicProvisioner allowedTopologies", func() {
10281028
It("should create persistent volume in the zone specified in allowedTopologies of storageclass", func() {
10291029
tests := []storageClassTest{
10301030
{
@@ -1059,7 +1059,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() {
10591059
}
10601060
})
10611061
})
1062-
Describe("DynamicProvisioner delayed binding with allowedTopologies [Feature:DynamicProvisioningScheduling] [Slow]", func() {
1062+
Describe("DynamicProvisioner delayed binding with allowedTopologies [Slow]", func() {
10631063
It("should create persistent volume in the same zone as specified in allowedTopologies after a pod mounting the claim is started", func() {
10641064
tests := []storageClassTest{
10651065
{

0 commit comments

Comments
 (0)