add an APIServerIdentity feature gate

This commit is contained in:
Haowei Cai 2020-10-26 10:25:13 -07:00
parent c492e5bfb7
commit 742ba5f24a

View File

@ -146,6 +146,12 @@ const (
//
// Allows for updating watchcache resource version with progress notify events.
EfficientWatchResumption featuregate.Feature = "EfficientWatchResumption"
// owner: @roycaihw
// alpha: v1.20
//
// Assigns each kube-apiserver an ID in a cluster.
APIServerIdentity featuregate.Feature = "APIServerIdentity"
)
func init() {
@ -171,4 +177,5 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
SelectorIndex: {Default: true, PreRelease: featuregate.GA, LockToDefault: true},
WarningHeaders: {Default: true, PreRelease: featuregate.Beta},
EfficientWatchResumption: {Default: false, PreRelease: featuregate.Alpha},
APIServerIdentity: {Default: false, PreRelease: featuregate.Alpha},
}