This documentation is for a release that is no longer maintained
See documentation for the latest supported version 3 or the latest supported version 4.Chapter 6. Pipelines CLI (tkn)
6.1. Installing tkn 링크 복사링크가 클립보드에 복사되었습니다!
Use the tkn
CLI to manage Red Hat OpenShift Pipelines from a terminal. The following section describes how to install tkn
on different platforms.
You can also find the URL to the latest binaries from the OpenShift Container Platform web console by clicking the ? icon in the upper-right corner and selecting Command Line Tools.
6.1.1. Installing Red Hat OpenShift Pipelines CLI (tkn) on Linux 링크 복사링크가 클립보드에 복사되었습니다!
For Linux distributions, you can download the CLI directly as a tar.gz
archive.
Procedure
Download the relevant CLI.
Unpack the archive:
tar xvzf <file>
$ tar xvzf <file>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
Place the
tkn
binary in a directory that is on yourPATH
. To check your
PATH
, run:echo $PATH
$ echo $PATH
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
6.1.2. Installing Red Hat OpenShift Pipelines CLI (tkn) on Linux using an RPM 링크 복사링크가 클립보드에 복사되었습니다!
For Red Hat Enterprise Linux (RHEL) version 8, you can install the Red Hat OpenShift Pipelines CLI (tkn
) as an RPM.
Prerequisites
- You have an active OpenShift Container Platform subscription on your Red Hat account.
- You have root or sudo privileges on your local system.
Procedure
Register with Red Hat Subscription Manager:
subscription-manager register
# subscription-manager register
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Pull the latest subscription data:
subscription-manager refresh
# subscription-manager refresh
Copy to Clipboard Copied! Toggle word wrap Toggle overflow List the available subscriptions:
subscription-manager list --available --matches '*pipelines*'
# subscription-manager list --available --matches '*pipelines*'
Copy to Clipboard Copied! Toggle word wrap Toggle overflow In the output for the previous command, find the pool ID for your OpenShift Container Platform subscription and attach the subscription to the registered system:
subscription-manager attach --pool=<pool_id>
# subscription-manager attach --pool=<pool_id>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Enable the repositories required by Red Hat OpenShift Pipelines:
subscription-manager repos --enable="pipelines-1.2-for-rhel-8-x86_64-rpms"
# subscription-manager repos --enable="pipelines-1.2-for-rhel-8-x86_64-rpms"
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Install the
openshift-pipelines-client
package:yum install openshift-pipelines-client
# yum install openshift-pipelines-client
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
After you install the CLI, it is available using the tkn
command:
tkn version
$ tkn version
6.1.3. Installing Red Hat OpenShift Pipelines CLI (tkn) on Windows 링크 복사링크가 클립보드에 복사되었습니다!
For Windows, the tkn
CLI is provided as a zip
archive.
Procedure
- Download the CLI.
- Unzip the archive with a ZIP program.
-
Add the location of your
tkn.exe
file to yourPATH
environment variable. To check your
PATH
, open the command prompt and run the command:path
C:\> path
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
6.1.4. Installing Red Hat OpenShift Pipelines CLI (tkn) on macOS 링크 복사링크가 클립보드에 복사되었습니다!
For macOS, the tkn
CLI is provided as a tar.gz
archive.
Procedure
- Download the CLI.
- Unpack and unzip the archive.
-
Move the
tkn
binary to a directory on your PATH. To check your
PATH
, open a terminal window and run:echo $PATH
$ echo $PATH
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
6.2. Configuring the OpenShift Pipelines tkn CLI 링크 복사링크가 클립보드에 복사되었습니다!
Configure the Red Hat OpenShift Pipelines tkn
CLI to enable tab completion.
6.2.1. Enabling tab completion 링크 복사링크가 클립보드에 복사되었습니다!
After you install the tkn
CLI, you can enable tab completion to automatically complete tkn
commands or suggest options when you press Tab.
Prerequisites
-
You must have the
tkn
CLI tool installed. -
You must have
bash-completion
installed on your local system.
Procedure
The following procedure enables tab completion for Bash.
Save the Bash completion code to a file:
tkn completion bash > tkn_bash_completion
$ tkn completion bash > tkn_bash_completion
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Copy the file to
/etc/bash_completion.d/
:sudo cp tkn_bash_completion /etc/bash_completion.d/
$ sudo cp tkn_bash_completion /etc/bash_completion.d/
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Alternatively, you can save the file to a local directory and source it from your
.bashrc
file instead.
Tab completion is enabled when you open a new terminal.
6.3. OpenShift Pipelines tkn reference 링크 복사링크가 클립보드에 복사되었습니다!
This section lists the basic tkn
CLI commands.
6.3.1. Basic syntax 링크 복사링크가 클립보드에 복사되었습니다!
tkn [command or options] [arguments…]
6.3.2. Global options 링크 복사링크가 클립보드에 복사되었습니다!
--help, -h
6.3.3. Utility commands 링크 복사링크가 클립보드에 복사되었습니다!
6.3.3.1. tkn 링크 복사링크가 클립보드에 복사되었습니다!
Parent command for tkn
CLI.
Example: Display all options
tkn
$ tkn
6.3.3.2. completion [shell] 링크 복사링크가 클립보드에 복사되었습니다!
Print shell completion code which must be evaluated to provide interactive completion. Supported shells are bash
and zsh
.
Example: Completion code for bash
shell
tkn completion bash
$ tkn completion bash
6.3.3.3. version 링크 복사링크가 클립보드에 복사되었습니다!
Print version information of the tkn
CLI.
Example: Check the tkn
version
tkn version
$ tkn version
6.3.4. Pipelines management commands 링크 복사링크가 클립보드에 복사되었습니다!
6.3.4.1. pipeline 링크 복사링크가 클립보드에 복사되었습니다!
Manage Pipelines.
Example: Display help
tkn pipeline --help
$ tkn pipeline --help
6.3.4.2. pipeline delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a Pipeline.
Example: Delete the mypipeline
Pipeline from a namespace
tkn pipeline delete mypipeline -n myspace
$ tkn pipeline delete mypipeline -n myspace
6.3.4.3. pipeline describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a Pipeline.
Example: Describe mypipeline
Pipeline
tkn pipeline describe mypipeline
$ tkn pipeline describe mypipeline
6.3.4.4. pipeline list 링크 복사링크가 클립보드에 복사되었습니다!
List Pipelines.
Example: Display a list of Pipelines
tkn pipeline list
$ tkn pipeline list
6.3.4.5. pipeline logs 링크 복사링크가 클립보드에 복사되었습니다!
Display Pipeline logs for a specific Pipeline.
Example: Stream live logs for the mypipeline
Pipeline
tkn pipeline logs -f mypipeline
$ tkn pipeline logs -f mypipeline
6.3.4.6. pipeline start 링크 복사링크가 클립보드에 복사되었습니다!
Start a Pipeline.
Example: Start mypipeline
Pipeline
tkn pipeline start mypipeline
$ tkn pipeline start mypipeline
6.3.5. PipelineRun commands 링크 복사링크가 클립보드에 복사되었습니다!
6.3.5.1. pipelinerun 링크 복사링크가 클립보드에 복사되었습니다!
Manage PipelineRuns.
Example: Display help
tkn pipelinerun -h
$ tkn pipelinerun -h
6.3.5.2. pipelinerun cancel 링크 복사링크가 클립보드에 복사되었습니다!
Cancel a PipelineRun.
Example: Cancel the mypipelinerun
PipelineRun from a namespace
tkn pipelinerun cancel mypipelinerun -n myspace
$ tkn pipelinerun cancel mypipelinerun -n myspace
6.3.5.3. pipelinerun delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a PipelineRun.
Example: Delete PipelineRuns from a namespace
tkn pipelinerun delete mypipelinerun1 mypipelinerun2 -n myspace
$ tkn pipelinerun delete mypipelinerun1 mypipelinerun2 -n myspace
6.3.5.4. pipelinerun describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a PipelineRun.
Example: Describe the mypipelinerun
PipelineRun in a namespace
tkn pipelinerun describe mypipelinerun -n myspace
$ tkn pipelinerun describe mypipelinerun -n myspace
6.3.5.5. pipelinerun list 링크 복사링크가 클립보드에 복사되었습니다!
List PipelineRuns.
Example: Display a list of PipelineRuns in a namespace
tkn pipelinerun list -n myspace
$ tkn pipelinerun list -n myspace
6.3.5.6. pipelinerun logs 링크 복사링크가 클립보드에 복사되었습니다!
Display the logs of a PipelineRun.
Example: Display the logs of the mypipelinerun
PipelineRun with all tasks and steps in a namespace
tkn pipelinerun logs mypipelinerun -a -n myspace
$ tkn pipelinerun logs mypipelinerun -a -n myspace
6.3.6. Task management commands 링크 복사링크가 클립보드에 복사되었습니다!
6.3.6.1. task 링크 복사링크가 클립보드에 복사되었습니다!
Manage Tasks.
Example: Display help
tkn task -h
$ tkn task -h
6.3.6.2. task delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a Task.
Example: Delete mytask1
and mytask2
Tasks from a namespace
tkn task delete mytask1 mytask2 -n myspace
$ tkn task delete mytask1 mytask2 -n myspace
6.3.6.3. task describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a Task.
Example: Describe the mytask
Task in a namespace
tkn task describe mytask -n myspace
$ tkn task describe mytask -n myspace
6.3.6.4. task list 링크 복사링크가 클립보드에 복사되었습니다!
List Tasks.
Example: List all the Tasks in a namespace
tkn task list -n myspace
$ tkn task list -n myspace
6.3.6.5. task logs 링크 복사링크가 클립보드에 복사되었습니다!
Display Task logs.
Example: Display logs for the mytaskrun
TaskRun of the mytask
Task
tkn task logs mytask mytaskrun -n myspace
$ tkn task logs mytask mytaskrun -n myspace
6.3.6.6. task start 링크 복사링크가 클립보드에 복사되었습니다!
Start a Task.
Example: Start the mytask
Task in a namespace
tkn task start mytask -s <ServiceAccountName> -n myspace
$ tkn task start mytask -s <ServiceAccountName> -n myspace
6.3.7. TaskRun commands 링크 복사링크가 클립보드에 복사되었습니다!
6.3.7.1. taskrun 링크 복사링크가 클립보드에 복사되었습니다!
Manage TaskRuns.
Example: Display help
tkn taskrun -h
$ tkn taskrun -h
6.3.7.2. taskrun cancel 링크 복사링크가 클립보드에 복사되었습니다!
Cancel a TaskRun.
Example: Cancel the mytaskrun
TaskRun from a namespace
tkn taskrun cancel mytaskrun -n myspace
$ tkn taskrun cancel mytaskrun -n myspace
6.3.7.3. taskrun delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a TaskRun.
Example: Delete mytaskrun1
and mytaskrun2
TaskRuns from a namespace
tkn taskrun delete mytaskrun1 mytaskrun2 -n myspace
$ tkn taskrun delete mytaskrun1 mytaskrun2 -n myspace
6.3.7.4. taskrun describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a TaskRun.
Example: Describe the mytaskrun
TaskRun in a namespace
tkn taskrun describe mytaskrun -n myspace
$ tkn taskrun describe mytaskrun -n myspace
6.3.7.5. taskrun list 링크 복사링크가 클립보드에 복사되었습니다!
List TaskRuns.
Example: List all TaskRuns in a namespace
tkn taskrun list -n myspace
$ tkn taskrun list -n myspace
6.3.7.6. taskrun logs 링크 복사링크가 클립보드에 복사되었습니다!
Display TaskRun logs.
Example: Display live logs for the mytaskrun
TaskRun in a namespace
tkn taskrun logs -f mytaskrun -n myspace
$ tkn taskrun logs -f mytaskrun -n myspace
6.3.8. Condition management commands 링크 복사링크가 클립보드에 복사되었습니다!
6.3.8.1. condition 링크 복사링크가 클립보드에 복사되었습니다!
Manage Conditions.
Example: Display help
tkn condition --help
$ tkn condition --help
6.3.8.2. condition delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a Condition.
Example: Delete the mycondition1
Condition from a namespace
tkn condition delete mycondition1 -n myspace
$ tkn condition delete mycondition1 -n myspace
6.3.8.3. condition describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a Condition.
Example: Describe the mycondition1
Condition in a namespace
tkn condition describe mycondition1 -n myspace
$ tkn condition describe mycondition1 -n myspace
6.3.8.4. condition list 링크 복사링크가 클립보드에 복사되었습니다!
List Conditions.
Example: List Conditions in a namespace
tkn condition list -n myspace
$ tkn condition list -n myspace
6.3.9. Pipeline Resource management commands 링크 복사링크가 클립보드에 복사되었습니다!
6.3.9.1. resource 링크 복사링크가 클립보드에 복사되었습니다!
Manage Pipeline Resources.
Example: Display help
tkn resource -h
$ tkn resource -h
6.3.9.2. resource create 링크 복사링크가 클립보드에 복사되었습니다!
Create a Pipeline Resource.
Example: Create a Pipeline Resource in a namespace
tkn resource create -n myspace
$ tkn resource create -n myspace
This is an interactive command that asks for input on the name of the Resource, type of the Resource, and the values based on the type of the Resource.
6.3.9.3. resource delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a Pipeline Resource.
Example: Delete the myresource
Pipeline Resource from a namespace
tkn resource delete myresource -n myspace
$ tkn resource delete myresource -n myspace
6.3.9.4. resource describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a Pipeline Resource.
Example: Describe the myresource
Pipeline Resource
tkn resource describe myresource -n myspace
$ tkn resource describe myresource -n myspace
6.3.9.5. resource list 링크 복사링크가 클립보드에 복사되었습니다!
List Pipeline Resources.
Example: List all Pipeline Resources in a namespace
tkn resource list -n myspace
$ tkn resource list -n myspace
6.3.10. ClusterTask management commands 링크 복사링크가 클립보드에 복사되었습니다!
6.3.10.1. clustertask 링크 복사링크가 클립보드에 복사되었습니다!
Manage ClusterTasks.
Example: Display help
tkn clustertask --help
$ tkn clustertask --help
6.3.10.2. clustertask delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a ClusterTask resource in a cluster.
Example: Delete mytask1
and mytask2
ClusterTasks
tkn clustertask delete mytask1 mytask2
$ tkn clustertask delete mytask1 mytask2
6.3.10.3. clustertask describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a ClusterTask.
Example: Describe the mytask
ClusterTask
tkn clustertask describe mytask1
$ tkn clustertask describe mytask1
6.3.10.4. clustertask list 링크 복사링크가 클립보드에 복사되었습니다!
List ClusterTasks.
Example: List ClusterTasks
tkn clustertask list
$ tkn clustertask list
6.3.10.5. clustertask start 링크 복사링크가 클립보드에 복사되었습니다!
Start ClusterTasks.
Example: Start the mytask
ClusterTask
tkn clustertask start mytask
$ tkn clustertask start mytask
6.3.11. Trigger management commands 링크 복사링크가 클립보드에 복사되었습니다!
6.3.11.1. eventlistener 링크 복사링크가 클립보드에 복사되었습니다!
Manage EventListeners.
Example: Display help
tkn eventlistener -h
$ tkn eventlistener -h
6.3.11.2. eventlistener delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete an EventListener.
Example: Delete mylistener1
and mylistener2
EventListeners in a namespace
tkn eventlistener delete mylistener1 mylistener2 -n myspace
$ tkn eventlistener delete mylistener1 mylistener2 -n myspace
6.3.11.3. eventlistener describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe an EventListener.
Example: Describe the mylistener
EventListener in a namespace
tkn eventlistener describe mylistener -n myspace
$ tkn eventlistener describe mylistener -n myspace
6.3.11.4. eventlistener list 링크 복사링크가 클립보드에 복사되었습니다!
List EventListeners.
Example: List all the EventListeners in a namespace
tkn eventlistener list -n myspace
$ tkn eventlistener list -n myspace
6.3.11.5. triggerbinding 링크 복사링크가 클립보드에 복사되었습니다!
Manage TriggerBindings.
Example: Display TriggerBindings help
tkn triggerbinding -h
$ tkn triggerbinding -h
6.3.11.6. triggerbinding delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a TriggerBinding.
Example: Delete mybinding1
and mybinding2
TriggerBindings in a namespace
tkn triggerbinding delete mybinding1 mybinding2 -n myspace
$ tkn triggerbinding delete mybinding1 mybinding2 -n myspace
6.3.11.7. triggerbinding describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a TriggerBinding.
Example: Describe the mybinding
TriggerBinding in a namespace
tkn triggerbinding describe mybinding -n myspace
$ tkn triggerbinding describe mybinding -n myspace
6.3.11.8. triggerbinding list 링크 복사링크가 클립보드에 복사되었습니다!
List TriggerBindings.
Example: List all the TriggerBindings in a namespace
tkn triggerbinding list -n myspace
$ tkn triggerbinding list -n myspace
6.3.11.9. triggertemplate 링크 복사링크가 클립보드에 복사되었습니다!
Manage TriggerTemplates.
Example: Display TriggerTemplate help
tkn triggertemplate -h
$ tkn triggertemplate -h
6.3.11.10. triggertemplate delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a TriggerTemplate.
Example: Delete mytemplate1
and mytemplate2
TriggerTemplates in a namespace
tkn triggertemplate delete mytemplate1 mytemplate2 -n `myspace`
$ tkn triggertemplate delete mytemplate1 mytemplate2 -n `myspace`
6.3.11.11. triggertemplate describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a TriggerTemplate.
Example: Describe the mytemplate
TriggerTemplate in a namespace
tkn triggertemplate describe mytemplate -n `myspace`
$ tkn triggertemplate describe mytemplate -n `myspace`
6.3.11.12. triggertemplate list 링크 복사링크가 클립보드에 복사되었습니다!
List TriggerTemplates.
Example: List all the TriggerTemplates in a namespace
tkn triggertemplate list -n myspace
$ tkn triggertemplate list -n myspace
6.3.11.13. clustertriggerbinding 링크 복사링크가 클립보드에 복사되었습니다!
Manage ClusterTriggerBindings.
Example: Display ClusterTriggerBindings help
tkn clustertriggerbinding -h
$ tkn clustertriggerbinding -h
6.3.11.14. clustertriggerbinding delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a ClusterTriggerBinding.
Example: Delete myclusterbinding1
and myclusterbinding2
ClusterTriggerBindings
tkn clustertriggerbinding delete myclusterbinding1 myclusterbinding2
$ tkn clustertriggerbinding delete myclusterbinding1 myclusterbinding2
6.3.11.15. clustertriggerbinding describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a ClusterTriggerBinding.
Example: Describe the myclusterbinding
ClusterTriggerBinding
tkn clustertriggerbinding describe myclusterbinding
$ tkn clustertriggerbinding describe myclusterbinding
6.3.11.16. clustertriggerbinding list 링크 복사링크가 클립보드에 복사되었습니다!
List ClusterTriggerBindings.
Example: List all ClusterTriggerBindings
tkn clustertriggerbinding list
$ tkn clustertriggerbinding list