Enables the Portworx in-tree driver to Portworx migration feature by default

This commit is contained in:
carlory 2024-05-21 18:50:20 +08:00
parent 8c1983ffc0
commit 8e4a6f3bed

View File

@ -136,7 +136,10 @@ const (
CPUManagerPolicyOptions featuregate.Feature = "CPUManagerPolicyOptions" CPUManagerPolicyOptions featuregate.Feature = "CPUManagerPolicyOptions"
// owner: @trierra // owner: @trierra
// kep: http://kep.k8s.io/2589
// alpha: v1.23 // alpha: v1.23
// beta: v1.25 (off by default)
// beta: v1.31 (on by default)
// //
// Enables the Portworx in-tree driver to Portworx migration feature. // Enables the Portworx in-tree driver to Portworx migration feature.
CSIMigrationPortworx featuregate.Feature = "CSIMigrationPortworx" CSIMigrationPortworx featuregate.Feature = "CSIMigrationPortworx"
@ -981,7 +984,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
CPUManagerPolicyOptions: {Default: true, PreRelease: featuregate.Beta}, CPUManagerPolicyOptions: {Default: true, PreRelease: featuregate.Beta},
CSIMigrationPortworx: {Default: false, PreRelease: featuregate.Beta}, // Off by default (requires Portworx CSI driver) CSIMigrationPortworx: {Default: true, PreRelease: featuregate.Beta}, // On by default (requires Portworx CSI driver)
CSIVolumeHealth: {Default: false, PreRelease: featuregate.Alpha}, CSIVolumeHealth: {Default: false, PreRelease: featuregate.Alpha},