Enable API chunking and promote to beta for 1.9
All list watchers default to using chunking. Kubernetes-commit: 113889e72da573946f3389b628251647c2a858b9
This commit is contained in:
parent
84a33ff782
commit
17e1e4d3cb
|
|
@ -58,6 +58,7 @@ const (
|
||||||
|
|
||||||
// owner: @smarterclayton
|
// owner: @smarterclayton
|
||||||
// alpha: v1.8
|
// alpha: v1.8
|
||||||
|
// beta: v1.9
|
||||||
//
|
//
|
||||||
// Allow API clients to retrieve resource lists in chunks rather than
|
// Allow API clients to retrieve resource lists in chunks rather than
|
||||||
// all at once.
|
// all at once.
|
||||||
|
|
@ -76,5 +77,5 @@ var defaultKubernetesFeatureGates = map[utilfeature.Feature]utilfeature.FeatureS
|
||||||
AdvancedAuditing: {Default: true, PreRelease: utilfeature.Beta},
|
AdvancedAuditing: {Default: true, PreRelease: utilfeature.Beta},
|
||||||
APIResponseCompression: {Default: false, PreRelease: utilfeature.Alpha},
|
APIResponseCompression: {Default: false, PreRelease: utilfeature.Alpha},
|
||||||
Initializers: {Default: false, PreRelease: utilfeature.Alpha},
|
Initializers: {Default: false, PreRelease: utilfeature.Alpha},
|
||||||
APIListChunking: {Default: false, PreRelease: utilfeature.Alpha},
|
APIListChunking: {Default: true, PreRelease: utilfeature.Beta},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue