--flatten[=false]: flatten the resulting kubeconfig file into self contained output (useful for creating portable kubeconfig files)
--merge=true: merge together the full hierarchy of kubeconfig files
--merge[=true]: merge together the full hierarchy of kubeconfig files
--minify[=false]: remove all information not used by current-context from the output
--no-headers[=false]: When using the default output, don't print headers.
-o, --output="": Output format. One of: json|yaml|wide|name|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://releases.k8s.io/HEAD/docs/user-guide/jsonpath.md].
cmd.Flags().Var(&options.Merge,"merge","merge together the full hierarchy of kubeconfig files")
f:=cmd.Flags().VarPF(&options.Merge,"merge","","merge together the full hierarchy of kubeconfig files")
f.NoOptDefVal="true"
cmd.Flags().BoolVar(&options.RawByteData,"raw",false,"display raw byte data")
cmd.Flags().BoolVar(&options.Flatten,"flatten",false,"flatten the resulting kubeconfig file into self contained output (useful for creating portable kubeconfig files)")
cmd.Flags().BoolVar(&options.Minify,"minify",false,"remove all information not used by current-context from the output")