We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d0e8b8 commit 0912b12Copy full SHA for 0912b12
augerctl/command/ctl.go
@@ -46,7 +46,7 @@ func NewCtlCommand() *cobra.Command {
46
47
cmd.PersistentFlags().BoolVar(&flags.InsecureDiscovery, "insecure-discovery", true, "accept insecure SRV records describing cluster endpoints")
48
cmd.PersistentFlags().BoolVar(&flags.InsecureSkipVerify, "insecure-skip-tls-verify", false, "skip server certificate verification")
49
- cmd.PersistentFlags().StringVar(&flags.TLS.CertFile, "cert", "", "identify secure client using this TLS certificate file")
+ cmd.PersistentFlags().StringVar(&flags.TLS.CertFile, "cert", "", "Path to the etcd client TLS cert file.")
50
cmd.PersistentFlags().StringVar(&flags.TLS.KeyFile, "key", "", "identify secure client using this TLS key file")
51
cmd.PersistentFlags().StringVar(&flags.TLS.TrustedCAFile, "cacert", "", "verify certificates of TLS-enabled secure servers using this CA bundle")
52
cmd.PersistentFlags().StringVar(&flags.User, "user", "", "username for authentication")
0 commit comments