Skip to content

Commit 7d659e6

Browse files
committed
Fix oc process -o template --template <template>
Before: $ oc process something -o template --template {{.Kind}} error: template format specified but no template given After: $ oc process something -o template --template {{.Kind}} List
1 parent 481d820 commit 7d659e6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pkg/cmd/cli/cmd/process.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ func RunProcess(f *clientcmd.Factory, out, errout io.Writer, cmd *cobra.Command,
259259
}
260260

261261
outputFormat := kcmdutil.GetFlagString(cmd, "output")
262+
outputTemplate := kcmdutil.GetFlagString(cmd, "template")
262263
if outputFormat == "describe" {
263264
if s, err := (&describe.TemplateDescriber{
264265
MetadataAccessor: meta.NewAccessor(),
@@ -273,7 +274,7 @@ func RunProcess(f *clientcmd.Factory, out, errout io.Writer, cmd *cobra.Command,
273274
}
274275
objects = append(objects, resultObj.Objects...)
275276

276-
p, _, err := kubectl.GetPrinter(outputFormat, "", false)
277+
p, _, err := kubectl.GetPrinter(outputFormat, outputTemplate, false)
277278
if err != nil {
278279
return err
279280
}

test/cmd/templates.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ 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"
2526
os::cmd::expect_success_and_text 'oc describe templates ruby-helloworld-sample' "BuildConfig.*ruby-sample-build"
2627
os::cmd::expect_success 'oc delete templates ruby-helloworld-sample'
2728
os::cmd::expect_success 'oc get templates'
@@ -94,4 +95,4 @@ os::cmd::expect_success 'oc process openshift/template/ruby-helloworld-sample'
9495
echo "processing templates in different namespace: ok"
9596
os::test::junit::declare_suite_end
9697

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

0 commit comments

Comments
 (0)