You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.PersistentFlags().StringP("write-out", "w", "simple", "set the output format (fields, json, protobuf, simple, table)")
53
+
cmd.PersistentFlags().Bool("hex", false, "print byte strings as hex encoded strings")
54
+
cmd.PersistentFlags().Duration("dial-timeout", 2*time.Second, "dial timeout for client connections")
55
+
cmd.PersistentFlags().Duration("command-timeout", 5*time.Second, "timeout for short running command (excluding dial timeout)")
56
+
cmd.PersistentFlags().Duration("keepalive-time", 2*time.Second, "keepalive time for client connections")
57
+
cmd.PersistentFlags().Duration("keepalive-timeout", 6*time.Second, "keepalive timeout for client connections")
58
+
cmd.PersistentFlags().Int("max-request-bytes", 0, "client-side request send limit in bytes (if 0, it defaults to 2.0 MiB (2 * 1024 * 1024).)")
59
+
cmd.PersistentFlags().Int("max-recv-bytes", 0, "client-side response receive limit in bytes (if 0, it defaults to \"math.MaxInt32\")")
60
+
cmd.PersistentFlags().Bool("insecure-transport", true, "disable transport security for client connections")
61
+
cmd.PersistentFlags().Bool("insecure-discovery", true, "accept insecure SRV records describing cluster endpoints")
62
+
cmd.PersistentFlags().Bool("insecure-skip-tls-verify", false, "skip server certificate verification (CAUTION: this option should be enabled only for testing purposes)")
63
+
cmd.PersistentFlags().String("cert", "", "identify secure client using this TLS certificate file")
64
+
cmd.PersistentFlags().String("key", "", "identify secure client using this TLS key file")
65
+
cmd.PersistentFlags().String("cacert", "", "verify certificates of TLS-enabled secure servers using this CA bundle")
66
+
cmd.PersistentFlags().String("auth-jwt-token", "", "JWT token used for authentication (if this option is used, --user and --password should not be set)")
67
+
cmd.PersistentFlags().String("user", "", "username[:password] for authentication (prompt if password is not supplied)")
68
+
cmd.PersistentFlags().String("password", "", "password for authentication (if this option is used, --user option shouldn't include password)")
69
+
cmd.PersistentFlags().StringP("discovery-srv", "d", "", "domain name to query for SRV records describing cluster endpoints")
70
+
cmd.PersistentFlags().String("discovery-srv-name", "", "service name to query when using DNS discovery")
0 commit comments