Skip to content

Commit c853ca4

Browse files
authored
Merge pull request kubernetes#126355 from haircommander/fs-quotas-false
set LocalStorageCapacityIsolationFSQuotaMonitoring to false by default
2 parents 9a16c96 + eeae981 commit c853ca4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/features/kube_features.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,9 +436,11 @@ const (
436436

437437
// owner: @RobertKrawitz
438438
// alpha: v1.15
439+
// beta: v1.31
439440
//
440441
// Allow use of filesystems for ephemeral storage monitoring.
441442
// Only applies if LocalStorageCapacityIsolation is set.
443+
// Relies on UserNamespacesSupport feature, and thus should follow it when setting defaults.
442444
LocalStorageCapacityIsolationFSQuotaMonitoring featuregate.Feature = "LocalStorageCapacityIsolationFSQuotaMonitoring"
443445

444446
// owner: @damemi
@@ -1106,7 +1108,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
11061108

11071109
LegacyServiceAccountTokenCleanUp: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // GA in 1.30; remove in 1.32
11081110

1109-
LocalStorageCapacityIsolationFSQuotaMonitoring: {Default: true, PreRelease: featuregate.Beta},
1111+
LocalStorageCapacityIsolationFSQuotaMonitoring: {Default: false, PreRelease: featuregate.Beta},
11101112

11111113
LogarithmicScaleDown: {Default: true, PreRelease: featuregate.GA, LockToDefault: true},
11121114

0 commit comments

Comments
 (0)