Skip to content

Commit

Permalink
Promote automatic client to node TLS certificates to beta
Browse files Browse the repository at this point in the history
  • Loading branch information
tnozicka committed Sep 20, 2023
1 parent 8a5c08f commit 949430b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ const (
//
// owner: @tnozicka
// alpha: v1.8
// beta: v1.11
AutomaticTLSCertificates featuregate.Feature = "AutomaticTLSCertificates"
)

func init() {
runtime.Must(utilfeature.DefaultMutableFeatureGate.Add(map[featuregate.Feature]featuregate.FeatureSpec{
AutomaticTLSCertificates: {
Default: false,
PreRelease: featuregate.Alpha,
Default: true,
PreRelease: featuregate.Beta,
},
}))
}

0 comments on commit 949430b

Please sign in to comment.