Use the TaskRun resource object to create and run on-cluster processes to
completion.
To create a TaskRun, you must first create a Task which
specifies one or more container images that you have implemented to perform and
complete a task.
A TaskRun runs until all steps have completed or until a failure occurs.
To define a configuration file for a TaskRun resource, you can specify the
following fields:
-
Required:
apiVersion- Specifies the API version, for exampletekton.dev/v1alpha1.kind- Specify theTaskRunresource object.metadata- Specifies data to uniquely identify theTaskRunresource object, for example aname.spec- Specifies the configuration information for yourTaskRunresource object.taskRefortaskSpec- Specifies the details of theTaskyou want to run
-
Optional:
serviceAccountName- Specifies aServiceAccountresource object that enables your build to run with the defined authentication information. When aServiceAccountisn't specified, thedefault-service-accountspecified in the configmap - config-defaults will be applied.- [
inputs] - Specifies input parameters and input resources - [
outputs] - Specifies output resources - [
timeout] - Specifies timeout after which theTaskRunwill fail. If the value oftimeoutis empty, the default timeout will be applied. If the value is set to 0, there is no timeout. You can also follow the instruction here to configure the default timeout. podTemplate- Specifies a subset ofPodSpecconfiguration that will be used as the basis for theTaskpod.
Since a TaskRun is an invocation of a Task, you must specify
what Task to invoke.
You can do this by providing a reference to an existing Task:
spec:
taskRef:
name: read-taskOr you can embed the spec of the Task directly in the TaskRun:
spec:
taskSpec:
inputs:
resources:
- name: workspace
type: git
steps:
- name: build-and-push
image: gcr.io/kaniko-project/executor:v0.9.0
# specifying DOCKER_CONFIG is required to allow kaniko to detect docker credential
env:
- name: "DOCKER_CONFIG"
value: "/tekton/home/.docker/"
command:
- /kaniko/executor
args:
- --destination=gcr.io/my-project/gohelloworldIf a Task has parameters, you can specify values for
them using the input section:
spec:
inputs:
params:
- name: flags
value: -someflagIf a parameter does not have a default value, it must be specified.
If a Task requires input resources or
output resources, they must be provided to run the
Task.
They can be provided via references to existing
PipelineResources:
spec:
inputs:
resources:
- name: workspace
resourceRef:
name: java-git-resourceOr by embedding the specs of the resources directly:
spec:
inputs:
resources:
- name: workspace
resourceSpec:
type: git
params:
- name: url
value: https://github.com/pivotal-nader-ziada/gohelloworldThe paths field can be used to override the paths to a resource
You can configure the default timeout by changing the value of default-timeout-minutes
in config/config-defaults.yaml. The default timeout
is 60 minutes, if default-timeout-minutes is not available. There is no timeout by
default, if default-timeout-minutes is set to 0.
Specifies the name of a ServiceAccount resource object. Use the
serviceAccountName field to run your Task with the privileges of the specified
service account. If no serviceAccountName field is specified, your Task runs
using the service account specified in the ConfigMap configmap-defaults
which if absent will default to
default service account
that is in the namespace
of the TaskRun resource object.
For examples and more information about specifying service accounts, see the
ServiceAccount reference topic.
Specifies a subset of
PodSpec
configuration that will be used as the basis for the Task pod. This
allows to customize some Pod specific field per Task execution, aka
TaskRun. The current field supported are:
nodeSelector: a selector which must be true for the pod to fit on a node, see here.tolerations: allow (but do not require) the pods to schedule onto nodes with matching taints.affinity: allow to constrain which nodes your pod is eligible to be scheduled on, based on labels on the node.securityContext: pod-level security attributes and common container settings, likerunAsUserorselinux.volumes: list of volumes that can be mounted by containers belonging to the pod. This lets the user of a Task define which type of volume to use for a TaskvolumeMountruntimeClassName: the name of a runtime class to use to run the pod.
In the following example, the Task is defined with a volumeMount
(my-cache), that is provided by the TaskRun, using a
PersistenceVolumeClaim. The Pod will also run as a non-root user.
apiVersion: tekton.dev/v1alpha1
kind: Task
metadata:
name: mytask
namespace: default
spec:
steps:
- name: write something
image: ubuntu
command: ["bash", "-c"]
args: ["echo 'foo' > /my-cache/bar"]
volumeMounts:
- name: my-cache
mountPath: /my-cache
---
apiVersion: tekton.dev/v1alpha1
kind: TaskRun
metadata:
name: mytaskRun
namespace: default
spec:
taskRef:
name: mytask
podTemplate:
securityContext:
runAsNonRoot: true
volumes:
- name: my-cache
persistentVolumeClaim:
claimName: my-volume-claimAs a TaskRun completes, its status field is filled in with relevant information for
the overall run, as well as each step.
The following example shows a completed TaskRun and its status field:
completionTime: "2019-08-12T18:22:57Z"
conditions:
- lastTransitionTime: "2019-08-12T18:22:57Z"
message: All Steps have completed executing
reason: Succeeded
status: "True"
type: Succeeded
podName: status-taskrun-pod-6488ef
startTime: "2019-08-12T18:22:51Z"
steps:
- container: step-hello
imageID: docker-pullable://busybox@sha256:895ab622e92e18d6b461d671081757af7dbaa3b00e3e28e12505af7817f73649
name: hello
terminated:
containerID: docker://d5a54f5bbb8e7a6fd3bc7761b78410403244cf4c9c5822087fb0209bf59e3621
exitCode: 0
finishedAt: "2019-08-12T18:22:56Z"
reason: Completed
startedAt: "2019-08-12T18:22:54Z"Fields include start and stop times for the TaskRun and each Step and exit codes.
For each step we also include the fully-qualified image used, with the digest.
If multiple steps are defined in the Task invoked by the TaskRun, we will see the
status.steps of the TaskRun displayed in the same order as they are defined in
spec.steps of the Task, when the TaskRun is accessed by the get command, e.g.
kubectl get taskrun <name> -o yaml. Replace <name> with the name of the TaskRun.
In order to cancel a running task (TaskRun), you need to update its spec to
mark it as cancelled. Running Pods will be deleted.
apiVersion: tekton.dev/v1alpha1
kind: TaskRun
metadata:
name: go-example-git
spec:
# […]
status: "TaskRunCancelled"To run a Task, create a new TaskRun which defines all inputs, outputs that
the Task needs to run. Below is an example where Task read-task is run by
creating read-repo-run. Task read-task has git input resource and TaskRun
read-repo-run includes reference to go-example-git.
apiVersion: tekton.dev/v1alpha1
kind: TaskRun
metadata:
name: read-repo-run
spec:
taskRef:
name: read-task
inputs:
resources:
- name: workspace
resourceRef:
name: go-example-git
---
apiVersion: tekton.dev/v1alpha1
kind: PipelineResource
metadata:
name: go-example-git
spec:
type: git
params:
- name: url
value: https://github.com/pivotal-nader-ziada/gohelloworld
---
apiVersion: tekton.dev/v1alpha1
kind: Task
metadata:
name: read-task
spec:
inputs:
resources:
- name: workspace
type: git
steps:
- name: readme
image: ubuntu
command:
- /bin/bash
args:
- "cat README.md"Another way of running a Task is embedding the TaskSpec in the taskRun yaml.
This can be useful for "one-shot" style runs, or debugging. TaskRun resource can
include either Task reference or TaskSpec but not both. Below is an example
where build-push-task-run-2 includes TaskSpec and no reference to Task.
apiVersion: tekton.dev/v1alpha1
kind: PipelineResource
metadata:
name: go-example-git
spec:
type: git
params:
- name: url
value: https://github.com/pivotal-nader-ziada/gohelloworld
---
apiVersion: tekton.dev/v1alpha1
kind: TaskRun
metadata:
name: build-push-task-run-2
spec:
inputs:
resources:
- name: workspace
resourceRef:
name: go-example-git
taskSpec:
inputs:
resources:
- name: workspace
type: git
steps:
- name: build-and-push
image: gcr.io/kaniko-project/executor:v0.9.0
# specifying DOCKER_CONFIG is required to allow kaniko to detect docker credential
env:
- name: "DOCKER_CONFIG"
value: "/tekton/home/.docker/"
command:
- /kaniko/executor
args:
- --destination=gcr.io/my-project/gohelloworldInput and output resources can also be embedded without creating Pipeline
Resources. TaskRun resource can include either a Pipeline Resource reference or
a Pipeline Resource Spec but not both. Below is an example where Git Pipeline
Resource Spec is provided as input for TaskRun read-repo.
apiVersion: tekton.dev/v1alpha1
kind: TaskRun
metadata:
name: read-repo
spec:
taskRef:
name: read-task
inputs:
resources:
- name: workspace
resourceSpec:
type: git
params:
- name: url
value: https://github.com/pivotal-nader-ziada/gohelloworldNote: TaskRun can embed both TaskSpec and resource spec at the same time.
The TaskRun will also serve as a record of the history of the invocations of
the Task.
For the sake of illustrating re-use, here are several example
TaskRuns (including referenced
PipelineResources) instantiating the
Task (dockerfile-build-and-push) in the Task example docs.
Build mchmarny/rester-tester:
# The PipelineResource
metadata:
name: mchmarny-repo
spec:
type: git
params:
- name: url
value: https://github.com/mchmarny/rester-tester.git# The TaskRun
spec:
taskRef:
name: dockerfile-build-and-push
inputs:
resources:
- name: workspace
resourceRef:
name: mchmarny-repo
params:
- name: IMAGE
value: gcr.io/my-project/rester-testerBuild googlecloudplatform/cloud-builder's wget builder:
# The PipelineResource
metadata:
name: cloud-builder-repo
spec:
type: git
params:
- name: url
value: https://github.com/googlecloudplatform/cloud-builders.git# The TaskRun
spec:
taskRef:
name: dockerfile-build-and-push
inputs:
resources:
- name: workspace
resourceRef:
name: cloud-builder-repo
params:
- name: IMAGE
value: gcr.io/my-project/wget
# Optional override to specify the subdirectory containing the Dockerfile
- name: DIRECTORY
value: /workspace/wgetBuild googlecloudplatform/cloud-builder's docker builder with 17.06.1:
# The PipelineResource
metadata:
name: cloud-builder-repo
spec:
type: git
params:
- name: url
value: https://github.com/googlecloudplatform/cloud-builders.git# The TaskRun
spec:
taskRef:
name: dockerfile-build-and-push
inputs:
resources:
- name: workspace
resourceRef:
name: cloud-builder-repo
params:
- name: IMAGE
value: gcr.io/my-project/docker
# Optional overrides
- name: DIRECTORY
value: /workspace/docker
- name: DOCKERFILE_NAME
value: Dockerfile-17.06.1Specifying a ServiceAccount to access a private git repository:
apiVersion: tekton.dev/v1alpha1
kind: TaskRun
metadata:
name: test-task-with-serviceaccount-git-ssh
spec:
serviceAccountName: test-task-robot-git-ssh
inputs:
resources:
- name: workspace
type: git
steps:
- name: config
image: ubuntu
command: ["/bin/bash"]
args: ["-c", "cat README.md"]Where serviceAccountName: test-build-robot-git-ssh references the following
ServiceAccount:
apiVersion: v1
kind: ServiceAccount
metadata:
name: test-task-robot-git-ssh
secrets:
- name: test-git-sshAnd name: test-git-ssh, references the following Secret:
apiVersion: v1
kind: Secret
metadata:
name: test-git-ssh
annotations:
tekton.dev/git-0: github.com
type: kubernetes.io/ssh-auth
data:
# Generated by:
# cat id_rsa | base64 -w 0
ssh-privatekey: LS0tLS1CRUdJTiBSU0EgUFJJVk.....[example]
# Generated by:
# ssh-keyscan github.com | base64 -w 0
known_hosts: Z2l0aHViLmNvbSBzc2g.....[example]Specifies the name of a ServiceAccount resource object. Use the
serviceAccountName field to run your Task with the privileges of the specified
service account. If no serviceAccountName field is specified, your Task runs
using the
default service account
that is in the
namespace
of the Task resource object.
For examples and more information about specifying service accounts, see the
ServiceAccount reference topic.
A well-established pattern in Kubernetes is that of the "sidecar" - a container which runs alongside your workloads to provide ancillary support. Typical examples of the sidecar pattern are logging daemons, services to update files on a shared volume, and network proxies.
Tekton will happily work with sidecars injected into a TaskRun's pods but the behaviour is a bit nuanced: When TaskRun's steps are complete any sidecar containers running inside the Pod will be terminated. In order to terminate the sidecars they will be restarted with a new "nop" image that quickly exits. The result will be that your TaskRun's Pod will include the sidecar container with a Retry Count of 1 and with a different container image than you might be expecting.
Note: There are some known issues with the existing implementation of sidecars:
-
The configured "nop" image must not provide the command that the sidecar is expected to run. If it does provide the command then it will not exit. This will result in the sidecar running forever and the Task eventually timing out. tektoncd#1347 is the issue where this bug is being tracked.
-
kubectl get podswill show a TaskRun's Pod as "Completed" if a sidecar exits successfully and "Error" if the sidecar exits with an error, regardless of how the step containers inside that pod exited. This issue only manifests with theget podscommand. The Pod description will instead show a Status of Failed and the individual container statuses will correctly reflect how and why they exited.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License.