Skip to content

Commit

Permalink
set Topology feature gate default to true
Browse files Browse the repository at this point in the history
This feature gate has already existed for 5 years. And should be safe to enable by default.
  • Loading branch information
huww98 committed Feb 28, 2024
1 parent ef83836 commit 1422b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func init() {
// defaultKubernetesFeatureGates consists of all known feature keys specific to external-provisioner.
// To add a new feature, define a key for it above and add it here.
var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
Topology: {Default: false, PreRelease: featuregate.GA},
Topology: {Default: true, PreRelease: featuregate.GA},
HonorPVReclaimPolicy: {Default: false, PreRelease: featuregate.Alpha},
CrossNamespaceVolumeDataSource: {Default: false, PreRelease: featuregate.Alpha},
VolumeAttributesClass: {Default: false, PreRelease: featuregate.Alpha},
Expand Down

0 comments on commit 1422b66

Please sign in to comment.