Skip to content

Commit c71519e

Browse files
authored
Merge pull request kubernetes#95267 from twosigma/betahostnamefqdn
SetHostnameAsFQDN will be beta in v1.20, enable feature gate by default.
2 parents 6ccdb15 + fd7c02d commit c71519e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/features/kube_features.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,7 @@ const (
616616

617617
// owner: @javidiaz
618618
// alpha: v1.19
619+
// beta: v1.20
619620
//
620621
// Allow setting the Fully Qualified Domain Name (FQDN) in the hostname of a Pod. If a Pod does not
621622
// have FQDN, this feature has no effect.
@@ -733,7 +734,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
733734
ExternalPolicyForExternalIP: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.22
734735
AnyVolumeDataSource: {Default: false, PreRelease: featuregate.Alpha},
735736
DefaultPodTopologySpread: {Default: false, PreRelease: featuregate.Alpha},
736-
SetHostnameAsFQDN: {Default: false, PreRelease: featuregate.Alpha},
737+
SetHostnameAsFQDN: {Default: true, PreRelease: featuregate.Beta},
737738
WinOverlay: {Default: true, PreRelease: featuregate.Beta},
738739
WinDSR: {Default: false, PreRelease: featuregate.Alpha},
739740
DisableAcceleratorUsageMetrics: {Default: true, PreRelease: featuregate.Beta},

0 commit comments

Comments
 (0)