mirror of https://github.com/k3s-io/k3s
Add alpha feature for mount containers
parent
d2b9aa29c3
commit
f177c1fd46
|
@ -169,6 +169,12 @@ const (
|
||||||
//
|
//
|
||||||
// Enable nodes to exclude themselves from service load balancers
|
// Enable nodes to exclude themselves from service load balancers
|
||||||
ServiceNodeExclusion utilfeature.Feature = "ServiceNodeExclusion"
|
ServiceNodeExclusion utilfeature.Feature = "ServiceNodeExclusion"
|
||||||
|
|
||||||
|
// owner: @jsafrane
|
||||||
|
// alpha: v1.9
|
||||||
|
//
|
||||||
|
// Enable running mount utilities in containers.
|
||||||
|
MountContainers utilfeature.Feature = "MountContainers"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
@ -201,6 +207,7 @@ var defaultKubernetesFeatureGates = map[utilfeature.Feature]utilfeature.FeatureS
|
||||||
ExpandPersistentVolumes: {Default: false, PreRelease: utilfeature.Alpha},
|
ExpandPersistentVolumes: {Default: false, PreRelease: utilfeature.Alpha},
|
||||||
CPUManager: {Default: false, PreRelease: utilfeature.Alpha},
|
CPUManager: {Default: false, PreRelease: utilfeature.Alpha},
|
||||||
ServiceNodeExclusion: {Default: false, PreRelease: utilfeature.Alpha},
|
ServiceNodeExclusion: {Default: false, PreRelease: utilfeature.Alpha},
|
||||||
|
MountContainers: {Default: false, PreRelease: utilfeature.Alpha},
|
||||||
|
|
||||||
// inherited features from generic apiserver, relisted here to get a conflict if it is changed
|
// inherited features from generic apiserver, relisted here to get a conflict if it is changed
|
||||||
// unintentionally on either side:
|
// unintentionally on either side:
|
||||||
|
|
Loading…
Reference in New Issue