AppArmor was flipped to beta, update feature gate

This commit is contained in:
Tim St. Clair
2016-08-29 10:22:05 -07:00
parent 8675adf138
commit 68e0f01043

View File

@@ -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