Skip to content

Commit

Permalink
Merge pull request #1407 from tnozicka/promote-certificates
Browse files Browse the repository at this point in the history
Promote automatic client to node TLS certificates to beta
  • Loading branch information
scylla-operator-bot[bot] authored Sep 20, 2023
2 parents 5ac92b2 + 949430b commit e87c45c
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 e87c45c

Please sign in to comment.