Merge pull request #125016 from carlory/promote-portworx-csi-migration-default-on

Enables the Portworx in-tree driver to Portworx migration feature by default
This commit is contained in:
Kubernetes Prow Robot 2024-06-19 13:26:48 -07:00 committed by GitHub
commit b3db54ea72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -136,7 +136,10 @@ const (
CPUManagerPolicyOptions featuregate.Feature = "CPUManagerPolicyOptions"
// owner: @trierra
// kep: http://kep.k8s.io/2589
// 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.
CSIMigrationPortworx featuregate.Feature = "CSIMigrationPortworx"
@ -987,7 +990,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
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},