Skip to content

Commit ebfdace

Browse files
committed
set Topology feature gate default to true
This feature gate has already existed for 5 years. And should be safe to enable by default.
1 parent 9e5a29b commit ebfdace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/features/features.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func init() {
5858
// defaultKubernetesFeatureGates consists of all known feature keys specific to external-provisioner.
5959
// To add a new feature, define a key for it above and add it here.
6060
var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
61-
Topology: {Default: false, PreRelease: featuregate.GA},
61+
Topology: {Default: true, PreRelease: featuregate.GA},
6262
HonorPVReclaimPolicy: {Default: true, PreRelease: featuregate.Beta},
6363
CrossNamespaceVolumeDataSource: {Default: false, PreRelease: featuregate.Alpha},
6464
VolumeAttributesClass: {Default: false, PreRelease: featuregate.Alpha},

0 commit comments

Comments
 (0)