// Globally persistent flags across all subcommands.
// TODO Change flag names to consts to allow safer lookup from subcommands.
// TODO Add a verbose flag that turns on glog logging. Probably need a way
// to do that automatically for every subcommand.
cmds.PersistentFlags().Bool(FlagMatchBinaryVersion,false,"Require server version to match client version")
cmds.PersistentFlags().String("ns-path",os.Getenv("HOME")+"/.kubernetes_ns","Path to the namespace info file that holds the namespace context to use for CLI requests.")
cmds.PersistentFlags().StringP("namespace","n","","If present, the namespace scope for this CLI request.")