1
1
// This module is included in the following assemblies:
2
2
// * tkn_cli/op-tkn-reference.adoc
3
3
4
+ :_mod-docs-content-type: REFERENCE
4
5
[id="op-tkn-pipeline-management_{context} "]
5
6
= Pipelines management commands
6
7
@@ -17,19 +18,19 @@ $ tkn pipeline --help
17
18
18
19
Delete a pipeline.
19
20
20
- .Example: Delete the `mypipeline` pipeline from a namespace
21
+ .Example: Delete a pipeline from a namespace
21
22
[source,terminal]
22
23
----
23
- $ tkn pipeline delete mypipeline -n myspace
24
+ $ tkn pipeline delete <pipeline_name> -n <namespace_name>
24
25
----
25
26
26
27
== pipeline describe
27
28
Describe a pipeline.
28
29
29
- .Example: Describe the `mypipeline` pipeline
30
+ .Example: Describe a pipeline
30
31
[source,terminal]
31
32
----
32
- $ tkn pipeline describe mypipeline
33
+ $ tkn pipeline describe <pipeline_name>
33
34
----
34
35
35
36
== pipeline list
@@ -44,17 +45,17 @@ $ tkn pipeline list
44
45
== pipeline logs
45
46
Display the logs for a specific pipeline.
46
47
47
- .Example: Stream the live logs for the `mypipeline` pipeline
48
+ .Example: Stream the live logs for a pipeline
48
49
[source,terminal]
49
50
----
50
- $ tkn pipeline logs -f mypipeline
51
+ $ tkn pipeline logs -f <pipeline_name>
51
52
----
52
53
53
54
== pipeline start
54
55
Start a pipeline.
55
56
56
- .Example: Start the `mypipeline` pipeline
57
+ .Example: Start a pipeline
57
58
[source,terminal]
58
59
----
59
- $ tkn pipeline start mypipeline
60
+ $ tkn pipeline start <pipeline_name>
60
61
----
0 commit comments