Skip to content

Commit acccbc7

Browse files
Merge pull request #82312 from hemantkumarc/RHDEVDOCS-6142
RHDEVDOCS-6142 Fix Tekton Pipeline Management Commands
2 parents 3006a60 + 1c343a9 commit acccbc7

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

modules/op-tkn-pipeline-management.adoc

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// This module is included in the following assemblies:
22
// * tkn_cli/op-tkn-reference.adoc
33

4+
:_mod-docs-content-type: REFERENCE
45
[id="op-tkn-pipeline-management_{context}"]
56
= Pipelines management commands
67

@@ -17,19 +18,19 @@ $ tkn pipeline --help
1718

1819
Delete a pipeline.
1920

20-
.Example: Delete the `mypipeline` pipeline from a namespace
21+
.Example: Delete a pipeline from a namespace
2122
[source,terminal]
2223
----
23-
$ tkn pipeline delete mypipeline -n myspace
24+
$ tkn pipeline delete <pipeline_name> -n <namespace_name>
2425
----
2526

2627
== pipeline describe
2728
Describe a pipeline.
2829

29-
.Example: Describe the `mypipeline` pipeline
30+
.Example: Describe a pipeline
3031
[source,terminal]
3132
----
32-
$ tkn pipeline describe mypipeline
33+
$ tkn pipeline describe <pipeline_name>
3334
----
3435

3536
== pipeline list
@@ -44,17 +45,17 @@ $ tkn pipeline list
4445
== pipeline logs
4546
Display the logs for a specific pipeline.
4647

47-
.Example: Stream the live logs for the `mypipeline` pipeline
48+
.Example: Stream the live logs for a pipeline
4849
[source,terminal]
4950
----
50-
$ tkn pipeline logs -f mypipeline
51+
$ tkn pipeline logs -f <pipeline_name>
5152
----
5253

5354
== pipeline start
5455
Start a pipeline.
5556

56-
.Example: Start the `mypipeline` pipeline
57+
.Example: Start a pipeline
5758
[source,terminal]
5859
----
59-
$ tkn pipeline start mypipeline
60+
$ tkn pipeline start <pipeline_name>
6061
----

0 commit comments

Comments
 (0)