package features
import "k8s.io/kubernetes/staging/src/k8s.io/apiserver/pkg/features"
Index ¶
Constants ¶
const ( // owner: @tallclair // alpha: v1.5 // // StreamingProxyRedirects controls whether the apiserver should intercept (and follow) // redirects from the backend (Kubelet) for streaming requests (exec/attach/port-forward). StreamingProxyRedirects utilfeature.Feature = "StreamingProxyRedirects" // owner: @tallclair // alpha: v1.7 // beta: v1.8 // // AdvancedAuditing enables a much more general API auditing pipeline, which includes support for // pluggable output backends and an audit policy specifying how different requests should be // audited. AdvancedAuditing utilfeature.Feature = "AdvancedAuditing" // owner: @ilackams // alpha: v1.7 // // Enables compression of REST responses (GET and LIST only) APIResponseCompression utilfeature.Feature = "APIResponseCompression" // owner: @smarterclayton // alpha: v1.7 // // Allow asynchronous coordination of object creation. // Auto-enabled by the Initializers admission plugin. Initializers utilfeature.Feature = "Initializers" // owner: @smarterclayton // alpha: v1.8 // beta: v1.9 // // Allow API clients to retrieve resource lists in chunks rather than // all at once. APIListChunking utilfeature.Feature = "APIListChunking" )
Source Files ¶
kube_features.go
- Version
- v1.10.4
- Published
- Jun 4, 2018
- Platform
- linux/amd64
- Imports
- 1 packages
- Last checked
- 14 seconds ago –
Tools for package owners.