func init() { rootCmd.PersistentFlags().StringVar(&globalFlags.Endpoints, "endpoint", "127.0.0.1:2378", "gRPC endpoint") rootCmd.PersistentFlags().StringVarP(&globalFlags.OutputFormat, "write-out", "w", "simple", "set the output format (simple, json, protobuf)") rootCmd.PersistentFlags().BoolVar(&globalFlags.IsHex, "hex", false, "print byte strings as hex encoded strings") rootCmd.PersistentFlags().StringVar(&globalFlags.TLS.CertFile, "cert", "", "identify secure client using this TLS certificate file") rootCmd.PersistentFlags().StringVar(&globalFlags.TLS.KeyFile, "key", "", "identify secure client using this TLS key file") rootCmd.PersistentFlags().StringVar(&globalFlags.TLS.CAFile, "cacert", "", "verify certificates of TLS-enabled secure servers using this CA bundle") rootCmd.AddCommand( command.NewGetCommand(), command.NewPutCommand(), command.NewDelCommand(), command.NewTxnCommand(), command.NewCompactionCommand(), command.NewWatchCommand(), command.NewVersionCommand(), command.NewLeaseCommand(), command.NewMemberCommand(), command.NewSnapshotCommand(), command.NewMakeMirrorCommand(), command.NewLockCommand(), ) }
func main() { app := cli.NewApp() app.Name = "etcdctlv3" app.Version = version.Version app.Usage = "A simple command line client for etcd3." app.Commands = []cli.Command{ command.NewRangeCommand(), command.NewPutCommand(), command.NewDeleteRangeCommand(), } app.Run(os.Args) }
func init() { rootCmd.PersistentFlags().StringVar(&globalFlags.Endpoints, "endpoint", "127.0.0.1:2378", "gRPC endpoint") rootCmd.AddCommand( command.NewRangeCommand(), command.NewPutCommand(), command.NewDeleteRangeCommand(), command.NewTxnCommand(), command.NewCompactionCommand(), command.NewWatchCommand(), command.NewVersionCommand(), ) }
func main() { app := cli.NewApp() app.Name = "etcdctlv3" app.Version = version.Version app.Usage = "A simple command line client for etcd3." app.Flags = []cli.Flag{ cli.StringFlag{Name: "endpoint", Value: "127.0.0.1:2378", Usage: "gRPC endpoint"}, } app.Commands = []cli.Command{ command.NewRangeCommand(), command.NewPutCommand(), command.NewDeleteRangeCommand(), command.NewTxnCommand(), command.NewCompactionCommand(), } app.Run(os.Args) }
func init() { rootCmd.PersistentFlags().StringVar(&globalFlags.Endpoints, "endpoint", "127.0.0.1:2378", "gRPC endpoint") rootCmd.PersistentFlags().StringVar(&globalFlags.TLS.CertFile, "cert", "", "identify HTTPS client using this SSL certificate file") rootCmd.PersistentFlags().StringVar(&globalFlags.TLS.KeyFile, "key", "", "identify HTTPS client using this SSL key file") rootCmd.PersistentFlags().StringVar(&globalFlags.TLS.CAFile, "cacert", "", "verify certificates of HTTPS-enabled servers using this CA bundle") rootCmd.AddCommand( command.NewRangeCommand(), command.NewPutCommand(), command.NewDeleteRangeCommand(), command.NewTxnCommand(), command.NewCompactionCommand(), command.NewWatchCommand(), command.NewVersionCommand(), command.NewLeaseCommand(), command.NewMemberCommand(), ) }
func init() { rootCmd.PersistentFlags().StringSliceVar(&globalFlags.Endpoints, "endpoints", []string{"127.0.0.1:2379", "127.0.0.1:22379", "127.0.0.1:32379"}, "gRPC endpoints") rootCmd.PersistentFlags().StringVarP(&globalFlags.OutputFormat, "write-out", "w", "simple", "set the output format (simple, json, protobuf)") rootCmd.PersistentFlags().BoolVar(&globalFlags.IsHex, "hex", false, "print byte strings as hex encoded strings") rootCmd.PersistentFlags().DurationVar(&globalFlags.DialTimeout, "dial-timeout", defaultDialTimeout, "dial timeout for client connections") rootCmd.PersistentFlags().DurationVar(&globalFlags.CommandTimeOut, "command-timeout", defaultCommandTimeOut, "timeout for short running command (excluding dial timeout)") // TODO: secure by default when etcd enables secure gRPC by default. rootCmd.PersistentFlags().BoolVar(&globalFlags.Insecure, "insecure-transport", true, "disable transport security for client connections") rootCmd.PersistentFlags().BoolVar(&globalFlags.InsecureSkipVerify, "insecure-skip-tls-verify", false, "skip server certificate verification") rootCmd.PersistentFlags().StringVar(&globalFlags.TLS.CertFile, "cert", "", "identify secure client using this TLS certificate file") rootCmd.PersistentFlags().StringVar(&globalFlags.TLS.KeyFile, "key", "", "identify secure client using this TLS key file") rootCmd.PersistentFlags().StringVar(&globalFlags.TLS.CAFile, "cacert", "", "verify certificates of TLS-enabled secure servers using this CA bundle") rootCmd.AddCommand( command.NewGetCommand(), command.NewPutCommand(), command.NewDelCommand(), command.NewTxnCommand(), command.NewCompactionCommand(), command.NewDefragCommand(), command.NewWatchCommand(), command.NewVersionCommand(), command.NewLeaseCommand(), command.NewMemberCommand(), command.NewEpHealthCommand(), command.NewSnapshotCommand(), command.NewMakeMirrorCommand(), command.NewLockCommand(), command.NewAuthCommand(), command.NewElectCommand(), command.NewUserCommand(), ) }