Skip to content

Commit 280b331

Browse files
author
j-griffith
committed
Promote VolumePVCDataSource to beta for 1.16
Promotes the VolumePVCDataSource feature (cloning) to beta for the 1.16 release. Since alpha release in 1.15 there have been a number of minor bug fixes in the CSI Hospath Provisioner and the CSI provisioner sidecar. We've also added e2e tests using the Hostpath provisioner.
1 parent 2af52db commit 280b331

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pkg/features/kube_features.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,7 @@ const (
447447

448448
// owner: @j-griffith
449449
// alpha: v1.15
450+
// beta: v1.16
450451
//
451452
// Enable support for specifying an existing PVC as a DataSource
452453
VolumePVCDataSource featuregate.Feature = "VolumePVCDataSource"
@@ -542,7 +543,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
542543
ServiceLoadBalancerFinalizer: {Default: false, PreRelease: featuregate.Alpha},
543544
LocalStorageCapacityIsolationFSQuotaMonitoring: {Default: false, PreRelease: featuregate.Alpha},
544545
NonPreemptingPriority: {Default: false, PreRelease: featuregate.Alpha},
545-
VolumePVCDataSource: {Default: false, PreRelease: featuregate.Alpha},
546+
VolumePVCDataSource: {Default: true, PreRelease: featuregate.Beta},
546547
PodOverhead: {Default: false, PreRelease: featuregate.Alpha},
547548
IPv6DualStack: {Default: false, PreRelease: featuregate.Alpha},
548549
EvenPodsSpread: {Default: false, PreRelease: featuregate.Alpha},

test/e2e/storage/testsuites/provisioning.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ func (p *provisioningTestSuite) defineTests(driver TestDriver, pattern testpatte
204204
}
205205
l.testCase.TestDynamicProvisioning()
206206
})
207-
ginkgo.It("should provision storage with pvc data source [Feature:VolumePVCDataSource]", func() {
207+
ginkgo.It("should provision storage with pvc data source", func() {
208208
if !dInfo.Capabilities[CapPVCDataSource] {
209209
framework.Skipf("Driver %q does not support cloning - skipping", dInfo.Name)
210210
}

0 commit comments

Comments
 (0)