mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 19:56:01 +00:00
pod-overhead: Introduce PodOverhead feature gate
Signed-off-by: Eric Ernst <eric.ernst@intel.com>
This commit is contained in:
parent
9988239125
commit
fc312d4529
@ -479,6 +479,12 @@ const (
|
|||||||
//
|
//
|
||||||
// Enable support for specifying an existing PVC as a DataSource
|
// Enable support for specifying an existing PVC as a DataSource
|
||||||
VolumePVCDataSource featuregate.Feature = "VolumePVCDataSource"
|
VolumePVCDataSource featuregate.Feature = "VolumePVCDataSource"
|
||||||
|
|
||||||
|
// owner: @egernst
|
||||||
|
// alpha: v1.16
|
||||||
|
//
|
||||||
|
// Enables PodOverhead, for accounting pod overheads which are specific to a given RuntimeClass
|
||||||
|
PodOverhead featuregate.Feature = "PodOverhead"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
@ -559,6 +565,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||||||
LocalStorageCapacityIsolationFSQuotaMonitoring: {Default: false, PreRelease: featuregate.Alpha},
|
LocalStorageCapacityIsolationFSQuotaMonitoring: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
NonPreemptingPriority: {Default: false, PreRelease: featuregate.Alpha},
|
NonPreemptingPriority: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
VolumePVCDataSource: {Default: false, PreRelease: featuregate.Alpha},
|
VolumePVCDataSource: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
PodOverhead: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
// inherited features from generic apiserver, relisted here to get a conflict if it is changed
|
// inherited features from generic apiserver, relisted here to get a conflict if it is changed
|
||||||
// unintentionally on either side:
|
// unintentionally on either side:
|
||||||
|
Loading…
Reference in New Issue
Block a user