From 243bd5743ba39382820663c3230137afbcb3131a Mon Sep 17 00:00:00 2001 From: bprashanth Date: Tue, 11 Oct 2016 15:16:38 -0700 Subject: [PATCH] Flip the beta flag --- pkg/util/config/feature_gate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/config/feature_gate.go b/pkg/util/config/feature_gate.go index c8782c4c42..00c2f4e6f9 100644 --- a/pkg/util/config/feature_gate.go +++ b/pkg/util/config/feature_gate.go @@ -49,7 +49,7 @@ var ( // represented here. knownFeatures = map[string]featureSpec{ allAlphaGate: {false, alpha}, - externalTrafficLocalOnly: {false, alpha}, + externalTrafficLocalOnly: {true, beta}, appArmor: {true, beta}, dynamicKubeletConfig: {false, alpha}, dynamicVolumeProvisioning: {true, alpha},