Skip to content

Commit 4d87963

Browse files
committed
RHDEVDOCS-6142 Fix Tekton Pipeline Management Commands
1 parent 72a7655 commit 4d87963

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

modules/op-tkn-pipeline-management.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ $ tkn pipeline --help
1717

1818
Delete a pipeline.
1919

20-
.Example: Delete the `mypipeline` pipeline from a namespace
20+
.Example: Delete a pipeline from a namespace
2121
[source,terminal]
2222
----
23-
$ tkn pipeline delete mypipeline -n myspace
23+
$ tkn pipeline delete <pipeline_name> -n <namespace_name>
2424
----
2525

2626
== pipeline describe
2727
Describe a pipeline.
2828

29-
.Example: Describe the `mypipeline` pipeline
29+
.Example: Describe a pipeline
3030
[source,terminal]
3131
----
32-
$ tkn pipeline describe mypipeline
32+
$ tkn pipeline describe <pipeline_name>
3333
----
3434

3535
== pipeline list
@@ -44,17 +44,17 @@ $ tkn pipeline list
4444
== pipeline logs
4545
Display the logs for a specific pipeline.
4646

47-
.Example: Stream the live logs for the `mypipeline` pipeline
47+
.Example: Stream the live logs for a pipeline
4848
[source,terminal]
4949
----
50-
$ tkn pipeline logs -f mypipeline
50+
$ tkn pipeline logs -f <pipeline_name>
5151
----
5252

5353
== pipeline start
5454
Start a pipeline.
5555

56-
.Example: Start the `mypipeline` pipeline
56+
.Example: Start a pipeline
5757
[source,terminal]
5858
----
59-
$ tkn pipeline start mypipeline
59+
$ tkn pipeline start <pipeline_name>
6060
----

0 commit comments

Comments
 (0)