Skip to content

Commit

Permalink
Merge pull request #1652 from Nordix/tuomo/turn-tls13-on-by-default
Browse files Browse the repository at this point in the history
🌱 set webhook min TLS version to 1.3
  • Loading branch information
metal3-io-bot authored May 15, 2024
2 parents c7c8234 + 02fff67 commit 8e0951a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ func initFlags(fs *pflag.FlagSet) {

fs.IntVar(&restConfigBurst, "kube-api-burst", 30,
"Maximum number of queries that should be allowed in one burst from the controller client to the Kubernetes API server. Default 30")
fs.StringVar(&tlsOptions.TLSMinVersion, "tls-min-version", TLSVersion12,
fs.StringVar(&tlsOptions.TLSMinVersion, "tls-min-version", TLSVersion13,
"The minimum TLS version in use by the webhook server.\n"+
fmt.Sprintf("Possible values are %s.", strings.Join(tlsSupportedVersions, ", ")),
)
Expand Down

0 comments on commit 8e0951a

Please sign in to comment.