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.Flags().BoolP("parameters", "", false, "Do not process but only print available parameters")
79
79
cmd.Flags().StringP("labels", "l", "", "Label to set in all resources for this template")
80
80
81
-
cmd.Flags().StringP("output", "o", "json", "Output format. One of: describe|json|yaml|name|template|templatefile.")
81
+
cmd.Flags().StringP("output", "o", "json", "Output format. One of: describe|json|yaml|name|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=...")
82
82
cmd.Flags().Bool("raw", false, "If true output the processed template instead of the template's objects. Implied by -o describe")
83
83
cmd.Flags().String("output-version", "", "Output the formatted object with the given version (default api-version).")
84
-
cmd.Flags().StringP("template", "t", "", "Template string or path to template file to use when -o=template or -o=templatefile. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview]")
84
+
cmd.Flags().StringP("template", "t", "", "Template string or path to template file to use when -o=go-template, -o=go-templatefile. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview]")
85
+
86
+
// kcmdutil.PrinterForCommand needs these flags, however they are useless
87
+
// here because oc process returns list of heterogeneous objects that is
88
+
// not suitable for formatting as a table.
89
+
cmd.Flags().Bool("no-headers", false, "When using the default output, don't print headers.")
90
+
cmd.Flags().MarkHidden("no-headers")
91
+
cmd.Flags().String("sort-by", "", "If non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. 'ObjectMeta.Name'). The field in the API resource specified by this JSONPath expression must be an integer or a string.")
0 commit comments