@@ -17,6 +17,7 @@ limitations under the License.
17
17
package features
18
18
19
19
import (
20
+ apiextensionsfeatures "k8s.io/apiextensions-apiserver/pkg/features"
20
21
genericfeatures "k8s.io/apiserver/pkg/features"
21
22
utilfeature "k8s.io/apiserver/pkg/util/feature"
22
23
)
@@ -44,13 +45,6 @@ const (
44
45
// alpha: v1.4
45
46
DynamicKubeletConfig utilfeature.Feature = "DynamicKubeletConfig"
46
47
47
- // owner: tallclair
48
- // alpha: v1.5
49
- //
50
- // StreamingProxyRedirects controls whether the apiserver should intercept (and follow)
51
- // redirects from the backend (Kubelet) for streaming requests (exec/attach/port-forward).
52
- StreamingProxyRedirects utilfeature.Feature = genericfeatures .StreamingProxyRedirects
53
-
54
48
// owner: @pweil-
55
49
// alpha: v1.5
56
50
//
@@ -158,11 +152,16 @@ var defaultKubernetesFeatureGates = map[utilfeature.Feature]utilfeature.FeatureS
158
152
DebugContainers : {Default : false , PreRelease : utilfeature .Alpha },
159
153
PodPriority : {Default : false , PreRelease : utilfeature .Alpha },
160
154
EnableEquivalenceClassCache : {Default : false , PreRelease : utilfeature .Alpha },
155
+ TaintNodesByCondition : {Default : false , PreRelease : utilfeature .Alpha },
161
156
162
157
// inherited features from generic apiserver, relisted here to get a conflict if it is changed
163
158
// unintentionally on either side:
164
- StreamingProxyRedirects : {Default : true , PreRelease : utilfeature .Beta },
165
- genericfeatures .AdvancedAuditing : {Default : false , PreRelease : utilfeature .Alpha },
166
- TaintNodesByCondition : {Default : false , PreRelease : utilfeature .Alpha },
167
- genericfeatures .Initializers : {Default : false , PreRelease : utilfeature .Alpha },
159
+ genericfeatures .StreamingProxyRedirects : {Default : true , PreRelease : utilfeature .Beta },
160
+ genericfeatures .AdvancedAuditing : {Default : false , PreRelease : utilfeature .Alpha },
161
+ genericfeatures .APIResponseCompression : {Default : false , PreRelease : utilfeature .Alpha },
162
+ genericfeatures .Initializers : {Default : false , PreRelease : utilfeature .Alpha },
163
+
164
+ // inherited features from apiextensions-apiserver, relisted here to get a conflict if it is changed
165
+ // unintentionally on either side:
166
+ apiextensionsfeatures .CustomResourceValidation : {Default : false , PreRelease : utilfeature .Alpha },
168
167
}
0 commit comments