Task management commands
tkn task create
Create a task in a namespace.
Example: Create a task defined by the
mytask.yaml
file in a namespace$ tkn task create -f mytask.yaml -n myspace
tkn task delete
Delete task resources in a namespace.
Example: Delete
mytask1
and mytask2
tasks from a namespace$ tkn task delete mytask1 mytask2 -n myspace
tkn task describe
Describe a task in a namespace.
Example: Describe the
mytask
task in a namespace$ tkn task describe mytask -n myspace
tkn task list
List tasks in a namespace.
Example: List all the tasks in a namespace
$ tkn task list -n myspace