add an APIServerIdentity feature gate

Kubernetes-commit: 742ba5f24a21e325eb41448df933dfab8153eadf
This commit is contained in:
Haowei Cai 2020-10-26 10:25:13 -07:00 committed by Kubernetes Publisher
parent 0fb509f8a9
commit b82c17781d
1 changed files with 7 additions and 0 deletions

View File

@ -148,6 +148,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() {
@ -173,4 +179,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},
}