add an APIServerIdentity feature gate
Kubernetes-commit: 742ba5f24a21e325eb41448df933dfab8153eadf
This commit is contained in:
parent
0fb509f8a9
commit
b82c17781d
|
@ -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},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue