From ca843ed4ac6d23f41b48145c02ca36a0ed925fae Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Fri, 26 Jan 2018 10:44:53 -0500 Subject: [PATCH] Mark ServiceProxyAllowExternalIPs feature as deprecated --- pkg/features/kube_features.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 9c82f4d7213..0139759d7c4 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -169,7 +169,7 @@ const ( ServiceNodeExclusion utilfeature.Feature = "ServiceNodeExclusion" // owner @brendandburns - // stable: v1.10 + // deprecated: v1.10 // // Enable the service proxy to contact external IP addresses. Note this feature is present // only for backward compatability, it will be removed in the 1.11 release. @@ -283,6 +283,6 @@ var defaultKubernetesFeatureGates = map[utilfeature.Feature]utilfeature.FeatureS // unintentionally on either side: apiextensionsfeatures.CustomResourceValidation: {Default: true, PreRelease: utilfeature.Beta}, - // backward compatability features that enable backwards compatability but should be removed soon. - ServiceProxyAllowExternalIPs: {Default: false, PreRelease: utilfeature.Beta}, + // features that enable backwards compatability but are scheduled to be removed + ServiceProxyAllowExternalIPs: {Default: false, PreRelease: utilfeature.Deprecated}, }