mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-01 07:47:56 +00:00
Merge pull request #31625 from timstclair/aa-gate
Automatic merge from submit-queue AppArmor was flipped to beta, update feature gate /cc @dchen1107 --- 1.4 Justification: - Risk: Low. Change is small & contained. - Rollback: Nothing else should touch this code path or depend on its functionality. - Cost: AppArmor is beta, but the feature gate thinks it's alpha.
This commit is contained in:
commit
e5a198e3da
@ -50,7 +50,7 @@ var (
|
|||||||
knownFeatures = map[string]featureSpec{
|
knownFeatures = map[string]featureSpec{
|
||||||
allAlphaGate: {false, alpha},
|
allAlphaGate: {false, alpha},
|
||||||
externalTrafficLocalOnly: {false, alpha},
|
externalTrafficLocalOnly: {false, alpha},
|
||||||
appArmor: {true, alpha},
|
appArmor: {true, beta},
|
||||||
dynamicKubeletConfig: {false, alpha},
|
dynamicKubeletConfig: {false, alpha},
|
||||||
dynamicVolumeProvisioning: {true, alpha},
|
dynamicVolumeProvisioning: {true, alpha},
|
||||||
}
|
}
|
||||||
@ -93,7 +93,7 @@ type FeatureGate interface {
|
|||||||
// MyFeature() bool
|
// MyFeature() bool
|
||||||
|
|
||||||
// owner: @timstclair
|
// owner: @timstclair
|
||||||
// alpha: v1.4
|
// beta: v1.4
|
||||||
AppArmor() bool
|
AppArmor() bool
|
||||||
|
|
||||||
// owner: @girishkalele
|
// owner: @girishkalele
|
||||||
|
Loading…
Reference in New Issue
Block a user