Skip to content

Commit 41702ed

Browse files
author
OpenShift Bot
authored
Merge pull request #12230 from mmilata/oc-process-o-template
Merged by openshift-bot
2 parents 6b08947 + b97df34 commit 41702ed

File tree

4 files changed

+27
-8
lines changed

4 files changed

+27
-8
lines changed

docs/man/man1/oc-process.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The output of the process command is always a list of one or more resources. You
3333

3434
.PP
3535
\fB\-o\fP, \fB\-\-output\fP="json"
36-
Output format. One of: describe|json|yaml|name|template|templatefile.
36+
Output format. One of: describe|json|yaml|name|go\-template=...|go\-template\-file=...|jsonpath=...|jsonpath\-file=...
3737

3838
.PP
3939
\fB\-\-output\-version\fP=""
@@ -53,7 +53,7 @@ The output of the process command is always a list of one or more resources. You
5353

5454
.PP
5555
\fB\-t\fP, \fB\-\-template\fP=""
56-
Template string or path to template file to use when \-o=template or \-o=templatefile. The template format is golang templates [
56+
Template string or path to template file to use when \-o=go\-template, \-o=go\-templatefile. The template format is golang templates [
5757
\[la]http://golang.org/pkg/text/template/#pkg-overview\[ra]]
5858

5959

docs/man/man1/openshift-cli-process.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The output of the process command is always a list of one or more resources. You
3333

3434
.PP
3535
\fB\-o\fP, \fB\-\-output\fP="json"
36-
Output format. One of: describe|json|yaml|name|template|templatefile.
36+
Output format. One of: describe|json|yaml|name|go\-template=...|go\-template\-file=...|jsonpath=...|jsonpath\-file=...
3737

3838
.PP
3939
\fB\-\-output\-version\fP=""
@@ -53,7 +53,7 @@ The output of the process command is always a list of one or more resources. You
5353

5454
.PP
5555
\fB\-t\fP, \fB\-\-template\fP=""
56-
Template string or path to template file to use when \-o=template or \-o=templatefile. The template format is golang templates [
56+
Template string or path to template file to use when \-o=go\-template, \-o=go\-templatefile. The template format is golang templates [
5757
\[la]http://golang.org/pkg/text/template/#pkg-overview\[ra]]
5858

5959

pkg/cmd/cli/cmd/process.go

+11-3
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,18 @@ func NewCmdProcess(fullName string, f *clientcmd.Factory, out, errout io.Writer)
7878
cmd.Flags().BoolP("parameters", "", false, "Do not process but only print available parameters")
7979
cmd.Flags().StringP("labels", "l", "", "Label to set in all resources for this template")
8080

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=...")
8282
cmd.Flags().Bool("raw", false, "If true output the processed template instead of the template's objects. Implied by -o describe")
8383
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.")
92+
cmd.Flags().MarkHidden("sort-by")
8593

8694
return cmd
8795
}
@@ -273,7 +281,7 @@ func RunProcess(f *clientcmd.Factory, out, errout io.Writer, cmd *cobra.Command,
273281
}
274282
objects = append(objects, resultObj.Objects...)
275283

276-
p, _, err := kubectl.GetPrinter(outputFormat, "", false)
284+
p, _, err := kcmdutil.PrinterForCommand(cmd)
277285
if err != nil {
278286
return err
279287
}

test/cmd/templates.sh

+12-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ os::cmd::expect_success 'oc get templates'
2222
os::cmd::expect_success 'oc get templates ruby-helloworld-sample'
2323
os::cmd::expect_success 'oc get template ruby-helloworld-sample -o json | oc process -f -'
2424
os::cmd::expect_success 'oc process ruby-helloworld-sample'
25+
os::cmd::expect_success_and_text 'oc process ruby-helloworld-sample -o template --template "{{.kind}}"' "List"
26+
os::cmd::expect_success_and_text 'oc process ruby-helloworld-sample -o go-template --template "{{.kind}}"' "List"
27+
os::cmd::expect_success_and_text 'oc process ruby-helloworld-sample -o go-template={{.kind}}' "List"
28+
os::cmd::expect_success 'oc process ruby-helloworld-sample -o go-template-file=/dev/null'
29+
os::cmd::expect_success_and_text 'oc process ruby-helloworld-sample -o jsonpath --template "{.kind}"' "List"
30+
os::cmd::expect_success_and_text 'oc process ruby-helloworld-sample -o jsonpath={.kind}' "List"
31+
os::cmd::expect_success 'oc process ruby-helloworld-sample -o jsonpath-file=/dev/null'
32+
os::cmd::expect_success_and_text 'oc process ruby-helloworld-sample -o describe' "ruby-22-centos7"
33+
os::cmd::expect_success_and_text 'oc process ruby-helloworld-sample -o json' "ruby-22-centos7"
34+
os::cmd::expect_success_and_text 'oc process ruby-helloworld-sample -o yaml' "ruby-22-centos7"
35+
os::cmd::expect_success_and_text 'oc process ruby-helloworld-sample -o name' "ruby-22-centos7"
2536
os::cmd::expect_success_and_text 'oc describe templates ruby-helloworld-sample' "BuildConfig.*ruby-sample-build"
2637
os::cmd::expect_success 'oc delete templates ruby-helloworld-sample'
2738
os::cmd::expect_success 'oc get templates'
@@ -94,4 +105,4 @@ os::cmd::expect_success 'oc process openshift/template/ruby-helloworld-sample'
94105
echo "processing templates in different namespace: ok"
95106
os::test::junit::declare_suite_end
96107

97-
os::test::junit::declare_suite_end
108+
os::test::junit::declare_suite_end

0 commit comments

Comments
 (0)