이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Chapter 3. OpenShift Pipelines tkn reference
This section lists the basic tkn CLI commands.
3.1. Basic syntax 링크 복사링크가 클립보드에 복사되었습니다!
tkn [command or options] [arguments…]
3.2. Global options 링크 복사링크가 클립보드에 복사되었습니다!
--help, -h
3.3. Utility commands 링크 복사링크가 클립보드에 복사되었습니다!
3.3.1. tkn 링크 복사링크가 클립보드에 복사되었습니다!
Parent command for tkn CLI.
Example: Display all options
tkn
$ tkn
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
3.3.3. version 링크 복사링크가 클립보드에 복사되었습니다!
Print version information of the tkn CLI.
Example: Check the tkn version
tkn version
$ tkn version
3.4. Pipelines management commands 링크 복사링크가 클립보드에 복사되었습니다!
3.4.1. pipeline 링크 복사링크가 클립보드에 복사되었습니다!
Manage pipelines.
Example: Display help
tkn pipeline --help
$ tkn pipeline --help
3.4.2. pipeline delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a pipeline.
Example: Delete a pipeline from a namespace
tkn pipeline delete <pipeline_name> -n <namespace_name>
$ tkn pipeline delete <pipeline_name> -n <namespace_name>
3.4.3. pipeline describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a pipeline.
Example: Describe a pipeline
tkn pipeline describe <pipeline_name>
$ tkn pipeline describe <pipeline_name>
3.4.4. pipeline list 링크 복사링크가 클립보드에 복사되었습니다!
Display a list of pipelines.
Example: Display a list of pipelines
tkn pipeline list
$ tkn pipeline list
3.4.5. pipeline logs 링크 복사링크가 클립보드에 복사되었습니다!
Display the logs for a specific pipeline.
Example: Stream the live logs for a pipeline
tkn pipeline logs -f <pipeline_name>
$ tkn pipeline logs -f <pipeline_name>
3.4.6. pipeline start 링크 복사링크가 클립보드에 복사되었습니다!
Start a pipeline.
Example: Start a pipeline
tkn pipeline start <pipeline_name>
$ tkn pipeline start <pipeline_name>
3.5. Pipeline run commands 링크 복사링크가 클립보드에 복사되었습니다!
3.5.1. pipelinerun 링크 복사링크가 클립보드에 복사되었습니다!
Manage pipeline runs.
Example: Display help
tkn pipelinerun -h
$ tkn pipelinerun -h
3.5.2. pipelinerun cancel 링크 복사링크가 클립보드에 복사되었습니다!
Cancel a pipeline run.
Example: Cancel a pipeline run from a namespace
tkn pipelinerun cancel <pipeline_run_name> -n <namespace_name>
$ tkn pipelinerun cancel <pipeline_run_name> -n <namespace_name>
3.5.3. pipelinerun delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a pipeline run.
Example: Delete pipeline runs from a namespace
tkn pipelinerun delete <pipeline_run_name_1> <pipeline_run_name_2> -n <namespace_name>
$ tkn pipelinerun delete <pipeline_run_name_1> <pipeline_run_name_2> -n <namespace_name>
Example: Delete all pipeline runs from a namespace, except the five most recently executed pipeline runs
tkn pipelinerun delete -n <namespace_name> --keep 5
$ tkn pipelinerun delete -n <namespace_name> --keep 5
- 1
- Replace
5with the number of most recently executed pipeline runs you want to retain.
Example: Delete all pipelines
tkn pipelinerun delete --all
$ tkn pipelinerun delete --all
Starting with Red Hat OpenShift Pipelines 1.6, the tkn pipelinerun delete --all command does not delete any resources that are in the running state.
3.5.4. pipelinerun describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a pipeline run.
Example: Describe a pipeline run in a namespace
tkn pipelinerun describe <pipeline_run_name> -n <namespace_name>
$ tkn pipelinerun describe <pipeline_run_name> -n <namespace_name>
3.5.5. pipelinerun list 링크 복사링크가 클립보드에 복사되었습니다!
List pipeline runs.
Example: Display a list of pipeline runs in a namespace
tkn pipelinerun list -n <namespace_name>
$ tkn pipelinerun list -n <namespace_name>
3.5.6. pipelinerun logs 링크 복사링크가 클립보드에 복사되었습니다!
Display the logs of a pipeline run.
Example: Display the logs of a pipeline run with all tasks and steps in a namespace
tkn pipelinerun logs <pipeline_run_name> -a -n <namespace_name>
$ tkn pipelinerun logs <pipeline_run_name> -a -n <namespace_name>
3.6. Task management commands 링크 복사링크가 클립보드에 복사되었습니다!
3.6.1. task 링크 복사링크가 클립보드에 복사되었습니다!
Manage tasks.
Example: Display help
tkn task -h
$ tkn task -h
3.6.2. task delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a task.
Example: Delete tasks from a namespace
tkn task delete <task_name_1> <task_name_2> -n <namespace_name>
$ tkn task delete <task_name_1> <task_name_2> -n <namespace_name>
3.6.3. task describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a task.
Example: Describe a task in a namespace
tkn task describe <task_name> -n <namespace_name>
$ tkn task describe <task_name> -n <namespace_name>
3.6.4. task list 링크 복사링크가 클립보드에 복사되었습니다!
List tasks.
Example: List all the tasks in a namespace
tkn task list -n <namespace_name>
$ tkn task list -n <namespace_name>
3.6.5. task start 링크 복사링크가 클립보드에 복사되었습니다!
Start a task.
Example: Start a task in a namespace
tkn task start <task_name> -s <service_account_name> -n <namespace_name>
$ tkn task start <task_name> -s <service_account_name> -n <namespace_name>
3.7. Task run commands 링크 복사링크가 클립보드에 복사되었습니다!
3.7.1. taskrun 링크 복사링크가 클립보드에 복사되었습니다!
Manage task runs.
Example: Display help
tkn taskrun -h
$ tkn taskrun -h
3.7.2. taskrun cancel 링크 복사링크가 클립보드에 복사되었습니다!
Cancel a task run.
Example: Cancel a task run from a namespace
tkn taskrun cancel <task_run_name> -n <namespace_name>
$ tkn taskrun cancel <task_run_name> -n <namespace_name>
3.7.3. taskrun delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a TaskRun.
Example: Delete task runs from a namespace
tkn taskrun delete <task_run_name_1> <task_run_name_2> -n <namespace_name>
$ tkn taskrun delete <task_run_name_1> <task_run_name_2> -n <namespace_name>
Example: Delete all but the five most recently executed task runs from a namespace
tkn taskrun delete -n <namespace_name> --keep 5
$ tkn taskrun delete -n <namespace_name> --keep 5
- 1
- Replace
5with the number of most recently executed task runs you want to retain.
3.7.4. taskrun describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a task run.
Example: Describe a task run in a namespace
tkn taskrun describe <task_run_name> -n <namespace_name>
$ tkn taskrun describe <task_run_name> -n <namespace_name>
3.7.5. taskrun list 링크 복사링크가 클립보드에 복사되었습니다!
List task runs.
Example: List all the task runs in a namespace
tkn taskrun list -n <namespace_name>
$ tkn taskrun list -n <namespace_name>
3.7.6. taskrun logs 링크 복사링크가 클립보드에 복사되었습니다!
Display task run logs.
Example: Display live logs for a task run in a namespace
tkn taskrun logs -f <task_run_name> -n <namespace_name>
$ tkn taskrun logs -f <task_run_name> -n <namespace_name>
3.8. Pipeline Resource management commands 링크 복사링크가 클립보드에 복사되었습니다!
3.8.1. resource 링크 복사링크가 클립보드에 복사되었습니다!
Manage Pipeline Resources.
Example: Display help
tkn resource -h
$ tkn resource -h
3.8.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.
3.8.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
3.8.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
3.8.5. resource list 링크 복사링크가 클립보드에 복사되었습니다!
List Pipeline Resources.
Example: List all Pipeline Resources in a namespace
tkn resource list -n myspace
$ tkn resource list -n myspace
3.9. Trigger management commands 링크 복사링크가 클립보드에 복사되었습니다!
3.9.1. eventlistener 링크 복사링크가 클립보드에 복사되었습니다!
Manage EventListeners.
Example: Display help
tkn eventlistener -h
$ tkn eventlistener -h
3.9.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
3.9.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
3.9.4. eventlistener list 링크 복사링크가 클립보드에 복사되었습니다!
List EventListeners.
Example: List all the EventListeners in a namespace
tkn eventlistener list -n myspace
$ tkn eventlistener list -n myspace
3.9.5. eventlistener logs 링크 복사링크가 클립보드에 복사되었습니다!
Display logs of an EventListener.
Example: Display the logs of the mylistener EventListener in a namespace
tkn eventlistener logs mylistener -n myspace
$ tkn eventlistener logs mylistener -n myspace
3.9.6. triggerbinding 링크 복사링크가 클립보드에 복사되었습니다!
Manage TriggerBindings.
Example: Display TriggerBindings help
tkn triggerbinding -h
$ tkn triggerbinding -h
3.9.7. 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
3.9.8. 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
3.9.9. triggerbinding list 링크 복사링크가 클립보드에 복사되었습니다!
List TriggerBindings.
Example: List all the TriggerBindings in a namespace
tkn triggerbinding list -n myspace
$ tkn triggerbinding list -n myspace
3.9.10. triggertemplate 링크 복사링크가 클립보드에 복사되었습니다!
Manage TriggerTemplates.
Example: Display TriggerTemplate help
tkn triggertemplate -h
$ tkn triggertemplate -h
3.9.11. 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`
3.9.12. 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`
3.9.13. triggertemplate list 링크 복사링크가 클립보드에 복사되었습니다!
List TriggerTemplates.
Example: List all the TriggerTemplates in a namespace
tkn triggertemplate list -n myspace
$ tkn triggertemplate list -n myspace
3.9.14. clustertriggerbinding 링크 복사링크가 클립보드에 복사되었습니다!
Manage ClusterTriggerBindings.
Example: Display ClusterTriggerBindings help
tkn clustertriggerbinding -h
$ tkn clustertriggerbinding -h
3.9.15. clustertriggerbinding delete 링크 복사링크가 클립보드에 복사되었습니다!
Delete a ClusterTriggerBinding.
Example: Delete myclusterbinding1 and myclusterbinding2 ClusterTriggerBindings
tkn clustertriggerbinding delete myclusterbinding1 myclusterbinding2
$ tkn clustertriggerbinding delete myclusterbinding1 myclusterbinding2
3.9.16. clustertriggerbinding describe 링크 복사링크가 클립보드에 복사되었습니다!
Describe a ClusterTriggerBinding.
Example: Describe the myclusterbinding ClusterTriggerBinding
tkn clustertriggerbinding describe myclusterbinding
$ tkn clustertriggerbinding describe myclusterbinding
3.9.17. clustertriggerbinding list 링크 복사링크가 클립보드에 복사되었습니다!
List ClusterTriggerBindings.
Example: List all ClusterTriggerBindings
tkn clustertriggerbinding list
$ tkn clustertriggerbinding list
3.10. Hub interaction commands 링크 복사링크가 클립보드에 복사되었습니다!
Interact with Tekton Hub for resources such as tasks and pipelines.
3.10.1. hub 링크 복사링크가 클립보드에 복사되었습니다!
Interact with hub.
Example: Display help
tkn hub -h
$ tkn hub -h
Example: Interact with a hub API server
tkn hub --api-server https://api.hub.tekton.dev
$ tkn hub --api-server https://api.hub.tekton.dev
For each example, to get the corresponding sub-commands and flags, run tkn hub <command> --help.
3.10.2. hub downgrade 링크 복사링크가 클립보드에 복사되었습니다!
Downgrade an installed resource.
Example: Downgrade the mytask task in the mynamespace namespace to it’s older version
tkn hub downgrade task mytask --to version -n mynamespace
$ tkn hub downgrade task mytask --to version -n mynamespace
3.10.3. hub get 링크 복사링크가 클립보드에 복사되었습니다!
Get a resource manifest by its name, kind, catalog, and version.
Example: Get the manifest for a specific version of the myresource pipeline or task from the tekton catalog
tkn hub get [pipeline | task] myresource --from tekton --version version
$ tkn hub get [pipeline | task] myresource --from tekton --version version
3.10.4. hub info 링크 복사링크가 클립보드에 복사되었습니다!
Display information about a resource by its name, kind, catalog, and version.
Example: Display information about a specific version of the mytask task from the tekton catalog
tkn hub info task mytask --from tekton --version version
$ tkn hub info task mytask --from tekton --version version
3.10.5. hub install 링크 복사링크가 클립보드에 복사되었습니다!
Install a resource from a catalog by its kind, name, and version.
Example: Install a specific version of the mytask task from the tekton catalog in the mynamespace namespace
tkn hub install task mytask --from tekton --version version -n mynamespace
$ tkn hub install task mytask --from tekton --version version -n mynamespace
3.10.6. hub reinstall 링크 복사링크가 클립보드에 복사되었습니다!
Reinstall a resource by its kind and name.
Example: Reinstall a specific version of the mytask task from the tekton catalog in the mynamespace namespace
tkn hub reinstall task mytask --from tekton --version version -n mynamespace
$ tkn hub reinstall task mytask --from tekton --version version -n mynamespace
3.10.7. hub search 링크 복사링크가 클립보드에 복사되었습니다!
Search a resource by a combination of name, kind, and tags.
Example: Search a resource with a tag cli
tkn hub search --tags cli
$ tkn hub search --tags cli
3.10.8. hub upgrade 링크 복사링크가 클립보드에 복사되었습니다!
Upgrade an installed resource.
Example: Upgrade the installed mytask task in the mynamespace namespace to a new version
tkn hub upgrade task mytask --to version -n mynamespace
$ tkn hub upgrade task mytask --to version -n mynamespace