Skip to content

Task Git v0.0.1

Choose a tag to compare

@otaviof otaviof released this 03 Apr 15:45
· 76 commits to main since this release

Using the Task

Task Resource File

You can retrieve the task directly with kubectl, i.e:

kubectl apply -f "https://github.com/openshift-pipelines/task-git/releases/download/0.0.1/task-git-0.0.1.yaml"

Tekton Task-Bundle

With tkn bundle you can rollout the Task from container-image, i.e:

tkn bundle list "ghcr.io/openshift-pipelines/task-git:0.0.1-bundle" task -o yaml | kubectl apply -f -

Helm-Chart

The Task is packaged as a Helm-Chart, you can choose between the traditional "tarball" (.tgz file) or the OCI container image, as shown below.

Installing the chart "tarball":

helm install task-git "https://github.com/openshift-pipelines/task-git/releases/download/0.0.1/task-git-0.0.1.tgz"

Alternatively, you can use the Chart container image:

helm install task-git "oci://ghcr.io/openshift-pipelines/task-git" --version="0.0.1"