Skip to content

Commit

Permalink
Update pkg/utils/options/options.go
Browse files Browse the repository at this point in the history
Co-authored-by: Ellis Tarn <[email protected]>
  • Loading branch information
olemarkus and ellistarn authored Dec 16, 2021
1 parent 58e70ac commit 5b934b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/utils/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func MustParse() Options {
flag.IntVar(&opts.WebhookPort, "port", 8443, "The port the webhook endpoint binds to for validation and mutation of resources")
flag.IntVar(&opts.KubeClientQPS, "kube-client-qps", env.WithDefaultInt("KUBE_CLIENT_QPS", 200), "The smoothed rate of qps to kube-apiserver")
flag.IntVar(&opts.KubeClientBurst, "kube-client-burst", env.WithDefaultInt("KUBE_CLIENT_BURST", 300), "The maximum allowed burst of queries to the kube-apiserver")
flag.StringVar(&opts.AWSNodeNameConvention, "aws-node-name-convention", env.WithDefaultString("AWs_NODE_NAME_CONVENTION", "ip-name"), "The node naming convention used by the AWS cloud provider")
flag.StringVar(&opts.AWSNodeNameConvention, "aws-node-name-convention", env.WithDefaultString("AWS_NODE_NAME_CONVENTION", "ip-name"), "The node naming convention used by the AWS cloud provider")
flag.Parse()
if err := opts.Validate(); err != nil {
panic(err)
Expand Down

0 comments on commit 5b934b5

Please sign in to comment.