Tekton Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 12: Line 12:


=Tekton CLI=
=Tekton CLI=
==Tekton CLI Installation==
<syntaxhighlight lang='bash'>
brew tap tektoncd/tools
brew install tektoncd/tools/tektoncd-cli
</syntaxhighlight>
=Domain Model Operations=
=Domain Model Operations=
==Task Operations==
==Task Operations==

Revision as of 22:58, 27 April 2022

Internal

Tekton Pipelines

Tekton Pipelines Installation

kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml
kubectl get pods -n tekton-pipelines --watch

The installation will create a tekton-pipelines namespace.

Tekton CLI

Tekton CLI Installation

brew tap tektoncd/tools
brew install tektoncd/tools/tektoncd-cli

Domain Model Operations

Task Operations

List Tasks

kubectl [-n <namespace-name>] get tasks

TaskRun Operations

List TaskRuns

kubectl [-n <namespace-name>] get taskruns

Display Execution Log of a TaskRun

kubectl [-n <namespace-name>] logs --selector=tekton.dev/taskRun=<taskrun-name>