mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 05:27:21 +00:00
Merge pull request #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 ```
This commit is contained in:
commit
39ea20a5bf
@ -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)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -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{
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user