Promote ExpandedDNSConfig feature to the beta stage

This adds an e2e test for the feature and promotes ExpandedDNSConfig
feature to the beta stage.
This commit is contained in:
Gunju Kim
2022-03-27 13:45:01 +09:00
parent 02109414e8
commit add4652352
2 changed files with 46 additions and 1 deletions

View File

@@ -308,6 +308,7 @@ const (
// owner: @gjkim42
// kep: https://kep.k8s.io/2595
// alpha: v1.22
// beta: v1.26
//
// Enables apiserver and kubelet to allow up to 32 DNSSearchPaths and up to 2048 DNSSearchListChars.
ExpandedDNSConfig featuregate.Feature = "ExpandedDNSConfig"
@@ -877,7 +878,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
ExpandPersistentVolumes: {Default: true, PreRelease: featuregate.GA}, // remove in 1.26
ExpandedDNSConfig: {Default: false, PreRelease: featuregate.Alpha},
ExpandedDNSConfig: {Default: true, PreRelease: featuregate.Beta},
ExperimentalHostUserNamespaceDefaultingGate: {Default: false, PreRelease: featuregate.Beta},