Skip to content

Commit

Permalink
Merge pull request kubernetes-csi#1167 from huww98/topology-true
Browse files Browse the repository at this point in the history
set Topology feature gate default to true
  • Loading branch information
k8s-ci-robot authored May 21, 2024
2 parents 512a0fd + ebfdace commit c031ee3
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 @@ -58,7 +58,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: true, PreRelease: featuregate.Beta},
CrossNamespaceVolumeDataSource: {Default: false, PreRelease: featuregate.Alpha},
VolumeAttributesClass: {Default: false, PreRelease: featuregate.Alpha},
Expand Down

0 comments on commit c031ee3

Please sign in to comment.