mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-05 02:09:56 +00:00
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.
This commit is contained in:
parent
2af52db689
commit
280b3313a0
@ -447,6 +447,7 @@ const (
|
|||||||
|
|
||||||
// owner: @j-griffith
|
// owner: @j-griffith
|
||||||
// alpha: v1.15
|
// alpha: v1.15
|
||||||
|
// beta: v1.16
|
||||||
//
|
//
|
||||||
// Enable support for specifying an existing PVC as a DataSource
|
// Enable support for specifying an existing PVC as a DataSource
|
||||||
VolumePVCDataSource featuregate.Feature = "VolumePVCDataSource"
|
VolumePVCDataSource featuregate.Feature = "VolumePVCDataSource"
|
||||||
@ -542,7 +543,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||||||
ServiceLoadBalancerFinalizer: {Default: false, PreRelease: featuregate.Alpha},
|
ServiceLoadBalancerFinalizer: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
LocalStorageCapacityIsolationFSQuotaMonitoring: {Default: false, PreRelease: featuregate.Alpha},
|
LocalStorageCapacityIsolationFSQuotaMonitoring: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
NonPreemptingPriority: {Default: false, PreRelease: featuregate.Alpha},
|
NonPreemptingPriority: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
VolumePVCDataSource: {Default: false, PreRelease: featuregate.Alpha},
|
VolumePVCDataSource: {Default: true, PreRelease: featuregate.Beta},
|
||||||
PodOverhead: {Default: false, PreRelease: featuregate.Alpha},
|
PodOverhead: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
IPv6DualStack: {Default: false, PreRelease: featuregate.Alpha},
|
IPv6DualStack: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
EvenPodsSpread: {Default: false, PreRelease: featuregate.Alpha},
|
EvenPodsSpread: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
@ -204,7 +204,7 @@ func (p *provisioningTestSuite) defineTests(driver TestDriver, pattern testpatte
|
|||||||
}
|
}
|
||||||
l.testCase.TestDynamicProvisioning()
|
l.testCase.TestDynamicProvisioning()
|
||||||
})
|
})
|
||||||
ginkgo.It("should provision storage with pvc data source [Feature:VolumePVCDataSource]", func() {
|
ginkgo.It("should provision storage with pvc data source", func() {
|
||||||
if !dInfo.Capabilities[CapPVCDataSource] {
|
if !dInfo.Capabilities[CapPVCDataSource] {
|
||||||
framework.Skipf("Driver %q does not support cloning - skipping", dInfo.Name)
|
framework.Skipf("Driver %q does not support cloning - skipping", dInfo.Name)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user