diff --git a/pipeline/build-push-gke-deploy/0.1/README.md b/pipeline/build-push-gke-deploy/0.1/README.md index ef599b5f..948b2db6 100644 --- a/pipeline/build-push-gke-deploy/0.1/README.md +++ b/pipeline/build-push-gke-deploy/0.1/README.md @@ -8,17 +8,17 @@ This Pipeline builds, pushes, and deploys your application to a Google Kubernete Both `Kaniko` and `Gke-deploy` tasks have been used from tekton catalog ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.2/kaniko.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.2/raw ``` ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gke-deploy/0.1/gke-deploy.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gke-deploy/0.1/raw ``` ## Install the Pipeline ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/pipeline/build-push-gke-deploy/0.1/build-push-gke-deploy.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/pipeline/build-push-gke-deploy/0.1/raw ``` ## Workspaces diff --git a/pipeline/build-push-gke-deploy/0.1/samples/build-push-gke-deploy-example.md b/pipeline/build-push-gke-deploy/0.1/samples/build-push-gke-deploy-example.md index 78de6d9d..1d37cd91 100644 --- a/pipeline/build-push-gke-deploy/0.1/samples/build-push-gke-deploy-example.md +++ b/pipeline/build-push-gke-deploy/0.1/samples/build-push-gke-deploy-example.md @@ -109,7 +109,7 @@ Install the Tekton Pipelines CLI to view your logs by following the instructions 4. Install the `build-push-gke-deploy` Pipeline. ```bash - kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/pipeline/build-push-gke-deploy/0.1/build-push-gke-deploy.yaml + kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/pipeline/build-push-gke-deploy/0.1/raw ``` 5. Create the `PipelineRun` config to run your Pipeline. diff --git a/pipeline/buildpacks/0.1/README.md b/pipeline/buildpacks/0.1/README.md index 54b26cb5..9d4f8226 100644 --- a/pipeline/buildpacks/0.1/README.md +++ b/pipeline/buildpacks/0.1/README.md @@ -24,15 +24,15 @@ This pipeline builds source into a container image using [Cloud Native Buildpack #### Install dependencies (if missing) ```shell -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.3/git-clone.yaml -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildpacks/0.3/buildpacks.yaml -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildpacks-phases/0.2/buildpacks-phases.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.3/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildpacks/0.3/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildpacks-phases/0.2/raw ``` #### Install pipeline ```shell -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/pipeline/buildpacks/0.1/buildpacks.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/pipeline/buildpacks/0.1/raw ``` ## Workspaces diff --git a/pipeline/buildpacks/0.2/README.md b/pipeline/buildpacks/0.2/README.md index 6c18e8de..353f309e 100644 --- a/pipeline/buildpacks/0.2/README.md +++ b/pipeline/buildpacks/0.2/README.md @@ -24,15 +24,15 @@ This pipeline builds source into a container image using [Cloud Native Buildpack #### Install dependencies (if missing) ```shell -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.3/git-clone.yaml -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildpacks/0.3/buildpacks.yaml -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildpacks-phases/0.2/buildpacks-phases.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.3/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildpacks/0.3/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildpacks-phases/0.2/raw ``` #### Install pipeline ```shell -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/pipeline/buildpacks/0.2/buildpacks.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/pipeline/buildpacks/0.2/raw ``` ## Workspaces diff --git a/task/ansible-builder/0.1/README.md b/task/ansible-builder/0.1/README.md index 462d8bc1..1f30b7fd 100644 --- a/task/ansible-builder/0.1/README.md +++ b/task/ansible-builder/0.1/README.md @@ -9,7 +9,7 @@ It means a further task that works with Dockerfile/Containerfile such as `builda ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ansible-builder/0.1/ansible-builder.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/ansible-builder/0.1/raw ``` ## Parameters diff --git a/task/ansible-runner/0.1/README.md b/task/ansible-runner/0.1/README.md index 8ef7f78b..cd6e5e68 100644 --- a/task/ansible-runner/0.1/README.md +++ b/task/ansible-runner/0.1/README.md @@ -10,7 +10,7 @@ Ansible Runner Task allows running the Ansible Playbooks using the [ansible-runn Create the Task and other resources: ```shell -kubectl apply --filename https://raw.githubusercontent.com/tektoncd/catalog/main/task/ansible-runner/0.1/ansible-runner.yaml +kubectl apply --filename https://api.hub.tekton.dev/v1/resource/tekton/task/ansible-runner/0.1/raw ``` Verify the created tasks: @@ -47,7 +47,7 @@ All the examples will be run in namespace called `funstuff`. Create the namespac ### Create the PVC and clone example sources ```shell -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml \ +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw \ -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ansible-runner/0.1/support/playbooks-pvc.yaml ``` diff --git a/task/ansible-runner/0.2/README.md b/task/ansible-runner/0.2/README.md index 10383810..257bc2d2 100644 --- a/task/ansible-runner/0.2/README.md +++ b/task/ansible-runner/0.2/README.md @@ -9,7 +9,7 @@ The latest versions of ansible-runner requires [`community.general`](https://git Create the Task and other resources: ```shell -kubectl apply --filename https://raw.githubusercontent.com/tektoncd/catalog/main/task/ansible-runner/0.2/ansible-runner.yaml +kubectl apply --filename https://api.hub.tekton.dev/v1/resource/tekton/task/ansible-runner/0.2/raw ``` Verify the created tasks: @@ -46,7 +46,7 @@ All the examples will be run in namespace called `funstuff`. Create the namespac ### Create the PVC and clone example sources ```shell -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.5/git-clone.yaml \ +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.5/raw \ -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ansible-runner/0.2/support/playbooks-pvc.yaml ``` diff --git a/task/ansible-tower-cli/0.1/README.md b/task/ansible-tower-cli/0.1/README.md index 827a855f..8e3bbc49 100644 --- a/task/ansible-tower-cli/0.1/README.md +++ b/task/ansible-tower-cli/0.1/README.md @@ -7,7 +7,7 @@ Install `tower-cli` task: ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ansible-tower-cli/0.1/ansible-tower-cli.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/ansible-tower-cli/0.1/raw ``` ## Parameters diff --git a/task/argocd-task-connect-repo/0.1/README.md b/task/argocd-task-connect-repo/0.1/README.md index f7746b58..f0f1c73f 100644 --- a/task/argocd-task-connect-repo/0.1/README.md +++ b/task/argocd-task-connect-repo/0.1/README.md @@ -5,7 +5,7 @@ ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/argocd-task-connect-repo/0.1/argocd-task-connect-repo.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/argocd-task-connect-repo/0.1/raw ``` ## Parameters diff --git a/task/argocd-task-sync-and-wait/0.1/README.md b/task/argocd-task-sync-and-wait/0.1/README.md index 0e859e42..72e2898b 100644 --- a/task/argocd-task-sync-and-wait/0.1/README.md +++ b/task/argocd-task-sync-and-wait/0.1/README.md @@ -5,7 +5,7 @@ This task syncs (deploys) an [Argo CD](https://argoproj.github.io/argo-cd/) appl ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/argocd-task-sync-and-wait/0.1/argocd-task-sync-and-wait.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/argocd-task-sync-and-wait/0.1/raw ``` ## Parameters diff --git a/task/argocd-task-sync-and-wait/0.2/README.md b/task/argocd-task-sync-and-wait/0.2/README.md index 81678dcc..94b707be 100644 --- a/task/argocd-task-sync-and-wait/0.2/README.md +++ b/task/argocd-task-sync-and-wait/0.2/README.md @@ -5,7 +5,7 @@ This task syncs (deploys) an [Argo CD](https://argoproj.github.io/argo-cd/) appl ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/argocd-task-sync-and-wait/0.2/argocd-task-sync-and-wait.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/argocd-task-sync-and-wait/0.2/raw ``` ## Parameters diff --git a/task/asciidoctor/0.1/README.md b/task/asciidoctor/0.1/README.md index bd3184c5..a7de6701 100644 --- a/task/asciidoctor/0.1/README.md +++ b/task/asciidoctor/0.1/README.md @@ -8,13 +8,13 @@ The resulting document can be sent by email, uploaded to the artifact repository ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/asciidoctor/0.1/asciidoctor.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/asciidoctor/0.1/raw ``` ## Pre-requisite Install git-clone task from catalog ``` -https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.3/git-clone.yaml +https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.3/raw ``` ## Workspaces diff --git a/task/aws-cli/0.1/README.md b/task/aws-cli/0.1/README.md index b3ee1f05..85c71689 100644 --- a/task/aws-cli/0.1/README.md +++ b/task/aws-cli/0.1/README.md @@ -7,7 +7,7 @@ All aws cli commands can be found [here](https://docs.aws.amazon.com/cli/latest/ ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/aws-cli/0.1/aws-cli.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/aws-cli/0.1/raw ``` ## Parameters diff --git a/task/aws-cli/0.2/README.md b/task/aws-cli/0.2/README.md index ba92bc87..68ecc911 100644 --- a/task/aws-cli/0.2/README.md +++ b/task/aws-cli/0.2/README.md @@ -7,7 +7,7 @@ All aws cli commands can be found [here](https://docs.aws.amazon.com/cli/latest/ ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/aws-cli/0.2/aws-cli.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/aws-cli/0.2/raw ``` ## Parameters diff --git a/task/aws-ecr-login/0.1/README.md b/task/aws-ecr-login/0.1/README.md index c61812ce..ff95e819 100644 --- a/task/aws-ecr-login/0.1/README.md +++ b/task/aws-ecr-login/0.1/README.md @@ -12,7 +12,7 @@ registry as long as your IAM principal has access to do so until the token expir ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/aws-ecr-login/0.1/aws-ecr-login.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/aws-ecr-login/0.1/raw ``` ## Parameters diff --git a/task/az/0.1/README.md b/task/az/0.1/README.md index 6eab5aa2..ffeb1a1e 100644 --- a/task/az/0.1/README.md +++ b/task/az/0.1/README.md @@ -5,7 +5,7 @@ This task performs operations on Microsoft Azure resources using `az`. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/az/0.1/az.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/az/0.1/raw ``` ## Parameters diff --git a/task/black/0.1/README.md b/task/black/0.1/README.md index b24f140a..6d4f6fac 100644 --- a/task/black/0.1/README.md +++ b/task/black/0.1/README.md @@ -5,7 +5,7 @@ This task can be used to format the python source code using [Black](https://git ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/black/0.1/black.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/black/0.1/raw ``` ## Parameters @@ -25,7 +25,7 @@ The Task can be run on `linux/amd64` platform. 1. Create the `git-clone` task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw ``` 2. Create the PVC diff --git a/task/black/0.2/README.md b/task/black/0.2/README.md index 3be1902e..60ea8caa 100644 --- a/task/black/0.2/README.md +++ b/task/black/0.2/README.md @@ -5,7 +5,7 @@ This task can be used to format the python source code using [Black](https://git ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/black/0.2/black.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/black/0.2/raw ``` ## Parameters @@ -28,7 +28,7 @@ The Task can be run on `linux/amd64` platform. 1. Create the `git-clone` task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw ``` 2. Create the PVC diff --git a/task/blue-green-deploy/0.1/README.md b/task/blue-green-deploy/0.1/README.md index dde1275d..889fbdc4 100644 --- a/task/blue-green-deploy/0.1/README.md +++ b/task/blue-green-deploy/0.1/README.md @@ -8,13 +8,13 @@ The following task can help you to deploy an application using the Blue-Green de ## Installing the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/blue-green-deploy/0.1/blue-green-deploy.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/blue-green-deploy/0.1/raw ``` ## Installing the ClusterRoleBinding ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/blue-green-deploy/0.1/support/clusterrolebinding.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/blue-green-deploy/0.1/support/raw ``` ## Workspaces diff --git a/task/buildah/0.1/README.md b/task/buildah/0.1/README.md index d5473500..473d6f02 100644 --- a/task/buildah/0.1/README.md +++ b/task/buildah/0.1/README.md @@ -10,7 +10,7 @@ to assemble a container image, then pushes that image to a container registry. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.1/buildah.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.1/raw ``` ## Parameters diff --git a/task/buildah/0.2/README.md b/task/buildah/0.2/README.md index 634a24f3..22c085eb 100644 --- a/task/buildah/0.2/README.md +++ b/task/buildah/0.2/README.md @@ -10,7 +10,7 @@ to assemble a container image, then pushes that image to a container registry. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.2/buildah.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.2/raw ``` ## Parameters diff --git a/task/buildah/0.3/README.md b/task/buildah/0.3/README.md index 75295ce3..618b0016 100644 --- a/task/buildah/0.3/README.md +++ b/task/buildah/0.3/README.md @@ -10,7 +10,7 @@ to assemble a container image, then pushes that image to a container registry. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.3/buildah.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.3/raw ``` ## Parameters diff --git a/task/buildah/0.4/README.md b/task/buildah/0.4/README.md index 7932f146..6e9c3040 100644 --- a/task/buildah/0.4/README.md +++ b/task/buildah/0.4/README.md @@ -10,7 +10,7 @@ to assemble a container image, then pushes that image to a container registry. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.4/buildah.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.4/raw ``` ## Parameters diff --git a/task/buildah/0.5/README.md b/task/buildah/0.5/README.md index b1645963..407ee74b 100644 --- a/task/buildah/0.5/README.md +++ b/task/buildah/0.5/README.md @@ -10,7 +10,7 @@ to assemble a container image, then pushes that image to a container registry. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.5/buildah.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.5/raw ``` ## Parameters diff --git a/task/buildkit-daemonless/0.1/README.md b/task/buildkit-daemonless/0.1/README.md index 8b470bce..ef6c27b3 100644 --- a/task/buildkit-daemonless/0.1/README.md +++ b/task/buildkit-daemonless/0.1/README.md @@ -13,7 +13,7 @@ This `buildkit-daemonless` Task is similar to [`buildkit`](../../buildkit) but d ## Install ```console -$ kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildkit-daemonless/0.1/buildkit-daemonless.yaml +$ kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildkit-daemonless/0.1/raw task.tekton.dev/buildkit-daemonless created ``` diff --git a/task/buildpacks-phases/0.1/README.md b/task/buildpacks-phases/0.1/README.md index 3a88e096..98d82139 100644 --- a/task/buildpacks-phases/0.1/README.md +++ b/task/buildpacks-phases/0.1/README.md @@ -12,7 +12,7 @@ See also [`buildpacks`](../buildpacks) for the combined version of this task, wh ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildpacks-phases/0.1/buildpacks-phases.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildpacks-phases/0.1/raw ``` > **NOTE:** This task is currently only compatible with Tekton **v0.11.0** and above, and CNB Platform API 0.3 (lifecycle v0.7.0 and above). For previous Platform API versions, [see below](#previous-platform-api-versions). diff --git a/task/buildpacks/0.1/README.md b/task/buildpacks/0.1/README.md index 11343a67..f318ff7a 100644 --- a/task/buildpacks/0.1/README.md +++ b/task/buildpacks/0.1/README.md @@ -9,7 +9,7 @@ See also [`buildpacks-phases`](../../buildpacks-phases) for the deconstructed ve ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildpacks/0.1/buildpacks.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildpacks/0.1/raw ``` > **NOTE:** This task is currently only compatible with Tekton **v0.11.0** and above, and CNB Platform API 0.3 (lifecycle v0.7.0 and above). For previous Platform API versions, [see below](#previous-platform-api-versions). diff --git a/task/buildpacks/0.2/README.md b/task/buildpacks/0.2/README.md index 81fb6473..59745c7c 100644 --- a/task/buildpacks/0.2/README.md +++ b/task/buildpacks/0.2/README.md @@ -9,7 +9,7 @@ See also [`buildpacks-phases`](../../buildpacks-phases) for the deconstructed ve ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildpacks/0.2/buildpacks.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildpacks/0.2/raw ``` > **NOTE:** This task is currently only compatible with Tekton **v0.11.0** and above, and CNB Platform API 0.3 (lifecycle v0.7.0 and above). For previous Platform API versions, [see below](#previous-platform-api-versions). diff --git a/task/check-make/0.1/README.md b/task/check-make/0.1/README.md index 5ce81833..bf807fe5 100644 --- a/task/check-make/0.1/README.md +++ b/task/check-make/0.1/README.md @@ -5,7 +5,7 @@ The following task is used to provide static analysis on YAML files mounted usin ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/check-make/0.1/check-make.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/check-make/0.1/raw ``` ## Parameters @@ -25,7 +25,7 @@ The Task can be run on `linux/amd64` platform. 1. Create the `git-clone` task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw ``` 2. Create the PVC diff --git a/task/codecov/0.1/README.md b/task/codecov/0.1/README.md index 0b69e3c9..37c23e7a 100644 --- a/task/codecov/0.1/README.md +++ b/task/codecov/0.1/README.md @@ -5,7 +5,7 @@ Upload your code coverage to [codecov.io](https://codecov.io) ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/codecov/0.1/codecov.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/codecov/0.1/raw ``` ## Parameters diff --git a/task/conftest/0.1/README.md b/task/conftest/0.1/README.md index bbd0c5b3..05ec4c97 100644 --- a/task/conftest/0.1/README.md +++ b/task/conftest/0.1/README.md @@ -8,7 +8,7 @@ your Tekton pipelines. Conftest is a tool for testing configuration files using In order to use Conftest with Tekton you need to first install the task. ```console -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/conftest/0.1/conftest.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/conftest/0.1/raw ``` ## Platforms diff --git a/task/create-github-release/0.1/README.md b/task/create-github-release/0.1/README.md index 02747edd..504ca065 100644 --- a/task/create-github-release/0.1/README.md +++ b/task/create-github-release/0.1/README.md @@ -13,7 +13,7 @@ Task can also be used to upload multiple `assets` including `binaries` of the re ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/create-github-release/0.1/create-github-release.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/create-github-release/0.1/raw ``` ## Parameters diff --git a/task/create-gitlab-release/0.1/README.md b/task/create-gitlab-release/0.1/README.md index e1e3082d..248e4d52 100644 --- a/task/create-gitlab-release/0.1/README.md +++ b/task/create-gitlab-release/0.1/README.md @@ -13,7 +13,7 @@ Task can also be used to upload `assets` including `binaries` of the released ve ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/create-gitlab-release/0.1/create-gitlab-release.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/create-gitlab-release/0.1/raw ``` ## Parameters diff --git a/task/curl/0.1/README.md b/task/curl/0.1/README.md index 85a1f15a..57fb5901 100644 --- a/task/curl/0.1/README.md +++ b/task/curl/0.1/README.md @@ -6,7 +6,7 @@ This task performs curl operation to transfer data from internet . ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/curl/0.1/curl.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/curl/0.1/raw ``` ## Parameters diff --git a/task/datree/0.1/README.md b/task/datree/0.1/README.md index 719ef65f..c60b89c7 100644 --- a/task/datree/0.1/README.md +++ b/task/datree/0.1/README.md @@ -8,7 +8,7 @@ Task can also be customised with the various parameters that are passed as flags ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/datree/0.1/datree.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/datree/0.1/raw ``` ## Parameters diff --git a/task/docker-build/0.1/README.md b/task/docker-build/0.1/README.md index 861a2821..a1945599 100644 --- a/task/docker-build/0.1/README.md +++ b/task/docker-build/0.1/README.md @@ -7,7 +7,7 @@ The Docker Build task builds source into a container image using [Docker](https: ### Install the Docker Build Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/docker-build/0.1/docker-build.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/docker-build/0.1/raw ``` ### Parameters diff --git a/task/dockerslim-build/0.1/README.md b/task/dockerslim-build/0.1/README.md index b8e53230..c92f0976 100644 --- a/task/dockerslim-build/0.1/README.md +++ b/task/dockerslim-build/0.1/README.md @@ -7,7 +7,7 @@ The Dockerslim Build task builds source into a container image using [Dockerslim ### Install the Docker Build Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/dockerslim-build/0.1/dockerslim-build.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/dockerslim-build/0.1/raw ``` ### Parameters diff --git a/task/flake8/0.1/README.md b/task/flake8/0.1/README.md index ce082740..c66630a1 100644 --- a/task/flake8/0.1/README.md +++ b/task/flake8/0.1/README.md @@ -11,7 +11,7 @@ The task provides linting based on [flake8](https://pypi.org/project/flake8/) fo ### Install the flake8 task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/flake8/0.1/flake8.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/flake8/0.1/raw ``` ## Parameters diff --git a/task/gcloud/0.1/README.md b/task/gcloud/0.1/README.md index 3aea32c1..2c13bad9 100644 --- a/task/gcloud/0.1/README.md +++ b/task/gcloud/0.1/README.md @@ -5,7 +5,7 @@ This task performs operations on Google Cloud Platform resources using `gcloud`. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gcloud/0.1/gcloud.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gcloud/0.1/raw ``` ## Parameters diff --git a/task/gcloud/0.2/README.md b/task/gcloud/0.2/README.md index b0e051cc..7ef3b493 100644 --- a/task/gcloud/0.2/README.md +++ b/task/gcloud/0.2/README.md @@ -5,7 +5,7 @@ This task performs operations on Google Cloud Platform resources using `gcloud`. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gcloud/0.2/gcloud.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gcloud/0.2/raw ``` ## Parameters diff --git a/task/gcloud/0.3/README.md b/task/gcloud/0.3/README.md index 9d255260..1594071d 100644 --- a/task/gcloud/0.3/README.md +++ b/task/gcloud/0.3/README.md @@ -11,7 +11,7 @@ For details on the underlying image, see https://github.com/GoogleCloudPlatform/ ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gcloud/0.3/gcloud.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gcloud/0.3/raw ``` ## Parameters diff --git a/task/generate-build-id/0.1/README.md b/task/generate-build-id/0.1/README.md index 1fd3c708..be0972ab 100644 --- a/task/generate-build-id/0.1/README.md +++ b/task/generate-build-id/0.1/README.md @@ -5,7 +5,7 @@ Given a base version, this task generates a unique build id by appending the bas ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/generate-build-id/0.1/generate-build-id.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/generate-build-id/0.1/raw ``` ## Parameters diff --git a/task/git-version/0.1/README.md b/task/git-version/0.1/README.md index eb0bf879..155cde0b 100644 --- a/task/git-version/0.1/README.md +++ b/task/git-version/0.1/README.md @@ -5,7 +5,7 @@ The `git-version` task let you generate a version from git history using `https: ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-version/0.1/git-version.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-version/0.1/raw ``` ## Workspaces diff --git a/task/gitea-set-status/0.1/README.md b/task/gitea-set-status/0.1/README.md index 56f10e48..a2d737f3 100644 --- a/task/gitea-set-status/0.1/README.md +++ b/task/gitea-set-status/0.1/README.md @@ -25,7 +25,7 @@ informations about the CI statuses or a direct link to the full log. ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gitea-set-status/0.1/gitea-set-status.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gitea-set-status/0.1/raw ``` ### Parameters diff --git a/task/github-add-comment/0.1/README.md b/task/github-add-comment/0.1/README.md index 51811882..f34a48e9 100644 --- a/task/github-add-comment/0.1/README.md +++ b/task/github-add-comment/0.1/README.md @@ -6,7 +6,7 @@ issue. ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.1/github-add-comment.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.1/raw ``` ### Parameters diff --git a/task/github-add-comment/0.2/README.md b/task/github-add-comment/0.2/README.md index c0236e3a..3c8c0513 100644 --- a/task/github-add-comment/0.2/README.md +++ b/task/github-add-comment/0.2/README.md @@ -6,7 +6,7 @@ issue. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.2/github-add-comment.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.2/raw ``` ## Secrets diff --git a/task/github-add-comment/0.3/README.md b/task/github-add-comment/0.3/README.md index 46b73d2e..bb50d9e4 100644 --- a/task/github-add-comment/0.3/README.md +++ b/task/github-add-comment/0.3/README.md @@ -16,7 +16,7 @@ issue. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.3/github-add-comment.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.3/raw ``` ## Secrets diff --git a/task/github-add-comment/0.4/README.md b/task/github-add-comment/0.4/README.md index e539ee5d..7102edb8 100644 --- a/task/github-add-comment/0.4/README.md +++ b/task/github-add-comment/0.4/README.md @@ -11,7 +11,7 @@ issue. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.4/github-add-comment.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.4/raw ``` ## Secrets diff --git a/task/github-add-comment/0.5/README.md b/task/github-add-comment/0.5/README.md index a8eaf3ce..80648663 100644 --- a/task/github-add-comment/0.5/README.md +++ b/task/github-add-comment/0.5/README.md @@ -11,7 +11,7 @@ issue. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.5/github-add-comment.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.5/raw ``` ## Secrets diff --git a/task/github-add-comment/0.6/README.md b/task/github-add-comment/0.6/README.md index f9e029f7..07145e64 100644 --- a/task/github-add-comment/0.6/README.md +++ b/task/github-add-comment/0.6/README.md @@ -6,7 +6,7 @@ issue. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.6/github-add-comment.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.6/raw ``` ## Secrets diff --git a/task/github-add-comment/0.7/README.md b/task/github-add-comment/0.7/README.md index d0a2f1f5..f3951b9e 100644 --- a/task/github-add-comment/0.7/README.md +++ b/task/github-add-comment/0.7/README.md @@ -6,7 +6,7 @@ issue. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.7/github-add-comment.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.7/raw ``` ## Secrets diff --git a/task/github-add-gist/0.1/README.md b/task/github-add-gist/0.1/README.md index 1ebc4f34..9d908911 100644 --- a/task/github-add-gist/0.1/README.md +++ b/task/github-add-gist/0.1/README.md @@ -6,7 +6,7 @@ and outputs the raw url as the result. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-gist/0.1/github-add-gist.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-add-gist/0.1/raw ``` ## Secrets diff --git a/task/github-add-gist/0.2/README.md b/task/github-add-gist/0.2/README.md index 7b4a5882..7cb21d8d 100644 --- a/task/github-add-gist/0.2/README.md +++ b/task/github-add-gist/0.2/README.md @@ -6,7 +6,7 @@ and outputs the raw url as the result. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-gist/0.2/github-add-gist.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-add-gist/0.2/raw ``` ## Secrets diff --git a/task/github-add-labels/0.1/README.md b/task/github-add-labels/0.1/README.md index f5f43e5b..149b89b6 100644 --- a/task/github-add-labels/0.1/README.md +++ b/task/github-add-labels/0.1/README.md @@ -6,7 +6,7 @@ This `task` can be used to add labels to a github `pull request` or an `issue`. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-labels/0.1/github-add-labels.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-add-labels/0.1/raw ``` ## Parameters diff --git a/task/github-app-token/0.1/README.md b/task/github-app-token/0.1/README.md index 8bc1c3c4..cec296e5 100644 --- a/task/github-app-token/0.1/README.md +++ b/task/github-app-token/0.1/README.md @@ -27,7 +27,7 @@ Refer [this](https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/setup-c ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-app-token/0.1/github-app-token.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-app-token/0.1/raw ``` ## Platforms diff --git a/task/github-app-token/0.2/README.md b/task/github-app-token/0.2/README.md index 4833a198..8abd0688 100644 --- a/task/github-app-token/0.2/README.md +++ b/task/github-app-token/0.2/README.md @@ -29,7 +29,7 @@ Refer [this](https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/setup-c ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-app-token/0.2/github-app-token.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-app-token/0.2/raw ``` ## Platforms diff --git a/task/github-close-issue/0.1/README.md b/task/github-close-issue/0.1/README.md index 44a8337e..6c3e5bce 100644 --- a/task/github-close-issue/0.1/README.md +++ b/task/github-close-issue/0.1/README.md @@ -6,7 +6,7 @@ issue. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-close-issue/0.1/github-close-issue.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-close-issue/0.1/raw ``` ## Secrets diff --git a/task/github-close-issue/0.2/README.md b/task/github-close-issue/0.2/README.md index 57411070..f7de04c2 100644 --- a/task/github-close-issue/0.2/README.md +++ b/task/github-close-issue/0.2/README.md @@ -7,7 +7,7 @@ issue. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-close-issue/0.2/github-close-issue.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-close-issue/0.2/raw ``` ## Secrets diff --git a/task/github-create-deployment-status/0.1/README.md b/task/github-create-deployment-status/0.1/README.md index a7b24389..fefc2566 100644 --- a/task/github-create-deployment-status/0.1/README.md +++ b/task/github-create-deployment-status/0.1/README.md @@ -7,7 +7,7 @@ See GitHub's deployment API on [Create a deployment status](https://docs.github. ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-create-deployment-status/0.1/github-create-deployment-status.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-create-deployment-status/0.1/raw ``` ### Secrets diff --git a/task/github-create-deployment/0.1/README.md b/task/github-create-deployment/0.1/README.md index 6e9a64f4..c3d543b1 100644 --- a/task/github-create-deployment/0.1/README.md +++ b/task/github-create-deployment/0.1/README.md @@ -7,7 +7,7 @@ See GitHub's deployment API on [creating a deployment](https://developer.github. ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-create-deployment/0.1/github-create-deployment.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-create-deployment/0.1/raw ``` ### Secrets diff --git a/task/github-create-deployment/0.2/README.md b/task/github-create-deployment/0.2/README.md index 3c5af305..c7c7cd88 100644 --- a/task/github-create-deployment/0.2/README.md +++ b/task/github-create-deployment/0.2/README.md @@ -7,7 +7,7 @@ See GitHub's deployment API on [Create a deployment](https://docs.github.com/res ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-create-deployment/0.2/github-create-deployment.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-create-deployment/0.2/raw ``` ### Secrets diff --git a/task/github-open-pr/0.1/README.md b/task/github-open-pr/0.1/README.md index 45ed9342..3f510ec8 100644 --- a/task/github-open-pr/0.1/README.md +++ b/task/github-open-pr/0.1/README.md @@ -22,7 +22,7 @@ to open pull requests on Github. It is able to fill in a title and body of the p ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-open-pr/0.1/github-open-pr.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-open-pr/0.1/raw ``` ### Parameters diff --git a/task/github-open-pr/0.2/README.md b/task/github-open-pr/0.2/README.md index 11631424..0ba85f93 100644 --- a/task/github-open-pr/0.2/README.md +++ b/task/github-open-pr/0.2/README.md @@ -22,7 +22,7 @@ to open pull requests on Github. It is able to fill in a title and body of the p ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-open-pr/0.2/github-open-pr.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-open-pr/0.2/raw ``` ### Parameters diff --git a/task/github-request-reviewers/0.1/README.md b/task/github-request-reviewers/0.1/README.md index 8a76a875..a96b8ed6 100644 --- a/task/github-request-reviewers/0.1/README.md +++ b/task/github-request-reviewers/0.1/README.md @@ -9,7 +9,7 @@ The `github-request-reviewers` task lets one request reviewers on a pull request ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-request-reviewers/0.1/github-request-reviewers.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-request-reviewers/0.1/raw ``` ## Secrets diff --git a/task/github-set-status/0.1/README.md b/task/github-set-status/0.1/README.md index 056b0c0d..e083d451 100644 --- a/task/github-set-status/0.1/README.md +++ b/task/github-set-status/0.1/README.md @@ -25,7 +25,7 @@ informations about the CI statuses or a direct link to the full log. ### Install the Task ```shell -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-set-status/0.1/github-set-status.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-set-status/0.1/raw ``` ### Parameters diff --git a/task/github-set-status/0.2/README.md b/task/github-set-status/0.2/README.md index d41d7052..3b2f9651 100644 --- a/task/github-set-status/0.2/README.md +++ b/task/github-set-status/0.2/README.md @@ -25,7 +25,7 @@ informations about the CI statuses or a direct link to the full log. ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-set-status/0.2/github-set-status.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-set-status/0.2/raw ``` ### Parameters diff --git a/task/github-set-status/0.3/README.md b/task/github-set-status/0.3/README.md index 1b32ceaa..d17143d5 100644 --- a/task/github-set-status/0.3/README.md +++ b/task/github-set-status/0.3/README.md @@ -25,7 +25,7 @@ informations about the CI statuses or a direct link to the full log. ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-set-status/0.3/github-set-status.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-set-status/0.3/raw ``` ### Parameters diff --git a/task/github-set-status/0.4/README.md b/task/github-set-status/0.4/README.md index 65f277cf..dc9af863 100644 --- a/task/github-set-status/0.4/README.md +++ b/task/github-set-status/0.4/README.md @@ -25,7 +25,7 @@ informations about the CI statuses or a direct link to the full log. ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-set-status/0.3/github-set-status.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/github-set-status/0.3/raw ``` ### Parameters diff --git a/task/gitlab-add-label/0.1/README.md b/task/gitlab-add-label/0.1/README.md index 0fcafee5..f7c1d8ca 100644 --- a/task/gitlab-add-label/0.1/README.md +++ b/task/gitlab-add-label/0.1/README.md @@ -34,7 +34,7 @@ stringData: ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gitlab-add-label/0.1/gitlab-add-label.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gitlab-add-label/0.1/raw ``` ### Parameters diff --git a/task/gitlab-set-status/0.1/README.md b/task/gitlab-set-status/0.1/README.md index e4c33e18..83660a43 100644 --- a/task/gitlab-set-status/0.1/README.md +++ b/task/gitlab-set-status/0.1/README.md @@ -14,7 +14,7 @@ informations about the CI statuses or a direct link to the full log. ### Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gitlab-set-status/0.1/gitlab-set-status.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gitlab-set-status/0.1/raw ``` ### Parameters diff --git a/task/gitleaks/0.1/README.md b/task/gitleaks/0.1/README.md index d9f369b4..4054be7a 100644 --- a/task/gitleaks/0.1/README.md +++ b/task/gitleaks/0.1/README.md @@ -5,13 +5,13 @@ This task makes it possible to use [gitleaks](https://github.com/zricethezav/git ## Installation ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gitleaks/0.1/gitleaks.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gitleaks/0.1/raw ``` ## Pre-requisite Install git-clone task from catalog ``` -https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.3/git-clone.yaml +https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.3/raw ``` diff --git a/task/gke-deploy/0.1/README.md b/task/gke-deploy/0.1/README.md index d436cc48..4b777e07 100644 --- a/task/gke-deploy/0.1/README.md +++ b/task/gke-deploy/0.1/README.md @@ -5,7 +5,7 @@ This Task deploys an application to a Google Kubernetes Engine cluster using [`g ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gke-deploy/0.1/gke-deploy.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gke-deploy/0.1/raw ``` ## Parameters diff --git a/task/gke-deploy/0.1/samples/build-push-gke-deploy-example.md b/task/gke-deploy/0.1/samples/build-push-gke-deploy-example.md index 54cfccc2..297b47a8 100644 --- a/task/gke-deploy/0.1/samples/build-push-gke-deploy-example.md +++ b/task/gke-deploy/0.1/samples/build-push-gke-deploy-example.md @@ -108,7 +108,7 @@ Install the Tekton Pipelines CLI to view your logs by following the instructions 4. Install the `build-push-gke-deploy` Pipeline. ```bash - kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/gke-deploy/build-push-gke-deploy.yaml + kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/gke-deploy/raw ``` 5. Create the `PipelineRun` config to run your Pipeline. diff --git a/task/golang-build/0.1/README.md b/task/golang-build/0.1/README.md index 680d0400..5f78a575 100644 --- a/task/golang-build/0.1/README.md +++ b/task/golang-build/0.1/README.md @@ -5,7 +5,7 @@ This Task is Golang task to build Go projects. ## Install the task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-build/0.1/golang-build.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/golang-build/0.1/raw ``` diff --git a/task/golang-build/0.2/README.md b/task/golang-build/0.2/README.md index 7e35d6e2..52178a7b 100644 --- a/task/golang-build/0.2/README.md +++ b/task/golang-build/0.2/README.md @@ -5,7 +5,7 @@ This Task is Golang task to build Go projects. ## Install the task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-build/0.2/golang-build.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/golang-build/0.2/raw ``` diff --git a/task/golang-build/0.3/README.md b/task/golang-build/0.3/README.md index 47e649cb..23b77b44 100644 --- a/task/golang-build/0.3/README.md +++ b/task/golang-build/0.3/README.md @@ -5,7 +5,7 @@ This Task is Golang task to build Go projects. ## Install the task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-build/0.3/golang-build.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/golang-build/0.3/raw ``` diff --git a/task/golang-fuzz/0.1/README.md b/task/golang-fuzz/0.1/README.md index 7da67446..62d7d23d 100644 --- a/task/golang-fuzz/0.1/README.md +++ b/task/golang-fuzz/0.1/README.md @@ -5,7 +5,7 @@ This task is a Golang task to fuzz Go projects ## Install the task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-test/0.1/golang-fuzz.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/golang-test/0.1/raw ``` ### Parameters diff --git a/task/golang-test/0.1/README.md b/task/golang-test/0.1/README.md index 4fc10be7..de28cc6c 100644 --- a/task/golang-test/0.1/README.md +++ b/task/golang-test/0.1/README.md @@ -5,7 +5,7 @@ This task is a Golang task to test Go projects. ## Install the task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-test/0.1/golang-test.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/golang-test/0.1/raw ``` ### Parameters diff --git a/task/golang-test/0.2/README.md b/task/golang-test/0.2/README.md index bb1e2c30..ec701264 100644 --- a/task/golang-test/0.2/README.md +++ b/task/golang-test/0.2/README.md @@ -5,7 +5,7 @@ This task is a Golang task to test Go projects. ## Install the task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-test/0.2/golang-test.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/golang-test/0.2/raw ``` ### Parameters diff --git a/task/golangci-lint/0.1/README.md b/task/golangci-lint/0.1/README.md index c048b975..308aa89d 100644 --- a/task/golangci-lint/0.1/README.md +++ b/task/golangci-lint/0.1/README.md @@ -5,7 +5,7 @@ This Task is a Golang task to validate Go projects. ## Install the task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golangci-lint/0.1/golangci-lint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/golangci-lint/0.1/raw ``` diff --git a/task/golangci-lint/0.2/README.md b/task/golangci-lint/0.2/README.md index a05221f5..9d7f0028 100644 --- a/task/golangci-lint/0.2/README.md +++ b/task/golangci-lint/0.2/README.md @@ -5,7 +5,7 @@ This Task is a Golang task to validate Go projects. ## Install the task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golangci-lint/0.2/golangci-lint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/golangci-lint/0.2/raw ``` diff --git a/task/goreleaser/0.1/README.md b/task/goreleaser/0.1/README.md index 45b64b7d..2d4f5fec 100644 --- a/task/goreleaser/0.1/README.md +++ b/task/goreleaser/0.1/README.md @@ -5,7 +5,7 @@ ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/goreleaser/0.1/goreleaser.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/goreleaser/0.1/raw ``` ## Parameters diff --git a/task/goreleaser/0.2/README.md b/task/goreleaser/0.2/README.md index 7a7c38a2..bc3221ea 100644 --- a/task/goreleaser/0.2/README.md +++ b/task/goreleaser/0.2/README.md @@ -5,7 +5,7 @@ ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/goreleaser/0.2/goreleaser.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/goreleaser/0.2/raw ``` ## Parameters diff --git a/task/gradle/0.1/README.md b/task/gradle/0.1/README.md index fcf424dd..7b51b0a3 100644 --- a/task/gradle/0.1/README.md +++ b/task/gradle/0.1/README.md @@ -5,7 +5,7 @@ This Task can be used to run a Gradle build on a gradle project. ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gradle/0.1/gradle.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gradle/0.1/raw ``` ## Parameters diff --git a/task/gradle/0.2/README.md b/task/gradle/0.2/README.md index 9dd0ee9c..80a3b123 100644 --- a/task/gradle/0.2/README.md +++ b/task/gradle/0.2/README.md @@ -5,7 +5,7 @@ This Task can be used to run a Gradle build on a gradle project. ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gradle/0.2/gradle.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gradle/0.2/raw ``` ## Parameters diff --git a/task/hadolint/0.1/README.md b/task/hadolint/0.1/README.md index 7875343b..cceb55ec 100644 --- a/task/hadolint/0.1/README.md +++ b/task/hadolint/0.1/README.md @@ -8,13 +8,13 @@ It stands on the shoulders of ShellCheck to lint the Bash code inside `RUN` inst ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/hadolint/0.1/hadolint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/hadolint/0.1/raw ``` ## Pre-requisite Install git-clone task from catalog ``` -https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.3/git-clone.yaml +https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.3/raw ``` ## Workspaces diff --git a/task/helm-conftest/0.1/README.md b/task/helm-conftest/0.1/README.md index fae8193c..2255a2ab 100644 --- a/task/helm-conftest/0.1/README.md +++ b/task/helm-conftest/0.1/README.md @@ -8,7 +8,7 @@ your Tekton pipelines. Conftest is a tool for testing configuration files using Conftest also has a Helm plugin, which redners the Helm chart before applying the policy. For that task use: ```console -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-conftest/0.1/helm-conftest.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/helm-conftest/0.1/raw ``` ## Helm usage diff --git a/task/helm-upgrade-from-repo/0.1/README.md b/task/helm-upgrade-from-repo/0.1/README.md index e9be1351..12e74eee 100644 --- a/task/helm-upgrade-from-repo/0.1/README.md +++ b/task/helm-upgrade-from-repo/0.1/README.md @@ -11,7 +11,7 @@ These tasks will install / upgrade a helm chart into your Kubernetes / OpenShift ### helm install / upgrade from repo ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-repo/0.1/helm-upgrade-from-repo.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-repo/0.1/raw ``` #### Parameters diff --git a/task/helm-upgrade-from-repo/0.2/README.md b/task/helm-upgrade-from-repo/0.2/README.md index df327bce..3096f7dd 100644 --- a/task/helm-upgrade-from-repo/0.2/README.md +++ b/task/helm-upgrade-from-repo/0.2/README.md @@ -11,7 +11,7 @@ These tasks will install / upgrade a helm chart into your Kubernetes / OpenShift ### helm install / upgrade from repo ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-repo/0.2/helm-upgrade-from-repo.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-repo/0.2/raw ``` #### Parameters diff --git a/task/helm-upgrade-from-source/0.1/README.md b/task/helm-upgrade-from-source/0.1/README.md index 5f60a805..4ad69cab 100644 --- a/task/helm-upgrade-from-source/0.1/README.md +++ b/task/helm-upgrade-from-source/0.1/README.md @@ -7,7 +7,7 @@ These tasks will install / upgrade a helm chart into your Kubernetes / OpenShift ### helm install / upgrade from source code ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-source/0.1/helm-upgrade-from-source.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-source/0.1/raw ``` #### Parameters diff --git a/task/helm-upgrade-from-source/0.2/README.md b/task/helm-upgrade-from-source/0.2/README.md index b48df35c..15bc67c8 100644 --- a/task/helm-upgrade-from-source/0.2/README.md +++ b/task/helm-upgrade-from-source/0.2/README.md @@ -7,7 +7,7 @@ These tasks will install / upgrade a helm chart into your Kubernetes / OpenShift ### helm install / upgrade from source code ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-source/0.2/helm-upgrade-from-source.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-source/0.2/raw ``` #### Parameters diff --git a/task/helm-upgrade-from-source/0.3/README.md b/task/helm-upgrade-from-source/0.3/README.md index 3764f15b..ac4f2475 100644 --- a/task/helm-upgrade-from-source/0.3/README.md +++ b/task/helm-upgrade-from-source/0.3/README.md @@ -7,7 +7,7 @@ These tasks will install / upgrade a helm chart into your Kubernetes / OpenShift ### helm install / upgrade from source code ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-source/0.3/helm-upgrade-from-source.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-source/0.3/raw ``` #### Parameters diff --git a/task/ibmcloud/0.1/README.md b/task/ibmcloud/0.1/README.md index 031e6b1d..59f63cb4 100644 --- a/task/ibmcloud/0.1/README.md +++ b/task/ibmcloud/0.1/README.md @@ -5,7 +5,7 @@ This task performs operations on IBM Cloud using the `ibmcloud` ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ibmcloud/0.1/ibmcloud.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/ibmcloud/0.1/raw ``` ## Parameters diff --git a/task/istio-canary-release/0.1/README.md b/task/istio-canary-release/0.1/README.md index 63e2e9a0..d5641108 100644 --- a/task/istio-canary-release/0.1/README.md +++ b/task/istio-canary-release/0.1/README.md @@ -13,19 +13,19 @@ For more details about canary release please refer [here](https://martinfowler.c 1. For Application Manifests deployment we can use the existing `kubenetes-actions` task from the catalog ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubernetes-actions/0.1/kubernetes-actions.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kubernetes-actions/0.1/raw ``` 2. For Istio Services ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/istio-canary-release/0.1/istio-canary-release.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/istio-canary-release/0.1/raw ``` ## Installing the ClusterRoleBinding ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/istio-canary-release/0.1/support/clusterrolebinding.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/istio-canary-release/0.1/support/raw ``` ## Workspaces diff --git a/task/jenkins/0.1/README.md b/task/jenkins/0.1/README.md index 8a8b546a..d71498d6 100644 --- a/task/jenkins/0.1/README.md +++ b/task/jenkins/0.1/README.md @@ -7,7 +7,7 @@ More details on Remote Access API can be found [here](https://www.jenkins.io/doc ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jenkins/0.1/jenkins.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jenkins/0.1/raw ``` ## Parameters diff --git a/task/jib-gradle/0.1/README.md b/task/jib-gradle/0.1/README.md index 687b871c..181317c4 100644 --- a/task/jib-gradle/0.1/README.md +++ b/task/jib-gradle/0.1/README.md @@ -7,7 +7,7 @@ Jib works with [Gradle](https://github.com/GoogleContainerTools/jib/tree/master/ ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-gradle/0.1/jib-gradle.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jib-gradle/0.1/raw ``` diff --git a/task/jib-gradle/0.2/README.md b/task/jib-gradle/0.2/README.md index d9910c61..640f0ead 100644 --- a/task/jib-gradle/0.2/README.md +++ b/task/jib-gradle/0.2/README.md @@ -7,7 +7,7 @@ Jib works with [Gradle](https://github.com/GoogleContainerTools/jib/tree/master/ ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-gradle/0.2/jib-gradle.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jib-gradle/0.2/raw ``` ## Parameters diff --git a/task/jib-gradle/0.3/README.md b/task/jib-gradle/0.3/README.md index 86eb2c21..313e21c4 100644 --- a/task/jib-gradle/0.3/README.md +++ b/task/jib-gradle/0.3/README.md @@ -7,7 +7,7 @@ Jib works with [Gradle](https://github.com/GoogleContainerTools/jib/tree/master/ ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-gradle/0.3/jib-gradle.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jib-gradle/0.3/raw ``` ## Parameters diff --git a/task/jib-gradle/0.4/README.md b/task/jib-gradle/0.4/README.md index 2018a51a..e2c8847c 100644 --- a/task/jib-gradle/0.4/README.md +++ b/task/jib-gradle/0.4/README.md @@ -7,7 +7,7 @@ Jib works with [Gradle](https://github.com/GoogleContainerTools/jib/tree/master/ ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-gradle/0.4/jib-gradle.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jib-gradle/0.4/raw ``` ## Parameters diff --git a/task/jib-maven/0.1/README.md b/task/jib-maven/0.1/README.md index 7deaaf74..5b3ae4e8 100644 --- a/task/jib-maven/0.1/README.md +++ b/task/jib-maven/0.1/README.md @@ -7,7 +7,7 @@ Jib works with [Maven](https://github.com/GoogleContainerTools/jib/tree/master/j ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-maven/0.1/jib-maven.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jib-maven/0.1/raw ``` ## Parameters diff --git a/task/jib-maven/0.2/README.md b/task/jib-maven/0.2/README.md index 6b5fafa5..b9370800 100644 --- a/task/jib-maven/0.2/README.md +++ b/task/jib-maven/0.2/README.md @@ -7,7 +7,7 @@ Jib works with [Maven](https://github.com/GoogleContainerTools/jib/tree/master/j ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-maven/0.2/jib-maven.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jib-maven/0.2/raw ``` ## Parameters diff --git a/task/jib-maven/0.3/README.md b/task/jib-maven/0.3/README.md index 6c6b26e9..7c2c8940 100644 --- a/task/jib-maven/0.3/README.md +++ b/task/jib-maven/0.3/README.md @@ -7,7 +7,7 @@ Jib works with [Maven](https://github.com/GoogleContainerTools/jib/tree/master/j ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-maven/0.3/jib-maven.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jib-maven/0.3/raw ``` ## Parameters diff --git a/task/jib-maven/0.4/README.md b/task/jib-maven/0.4/README.md index 91004190..601f0dd9 100644 --- a/task/jib-maven/0.4/README.md +++ b/task/jib-maven/0.4/README.md @@ -7,7 +7,7 @@ Jib works with [Maven](https://github.com/GoogleContainerTools/jib/tree/master/j ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-maven/0.4/jib-maven.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jib-maven/0.4/raw ``` ## Parameters diff --git a/task/kaniko/0.1/README.md b/task/kaniko/0.1/README.md index 13026989..69714ba4 100644 --- a/task/kaniko/0.1/README.md +++ b/task/kaniko/0.1/README.md @@ -15,7 +15,7 @@ makes it a perfect tool to be part of Tekton. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.1/kaniko.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.1/raw ``` ## Parameters diff --git a/task/kaniko/0.2/README.md b/task/kaniko/0.2/README.md index 74bd11a6..cf3f6c6f 100644 --- a/task/kaniko/0.2/README.md +++ b/task/kaniko/0.2/README.md @@ -15,7 +15,7 @@ makes it a perfect tool to be part of Tekton. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.2/kaniko.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.2/raw ``` ## Parameters diff --git a/task/kaniko/0.3/README.md b/task/kaniko/0.3/README.md index 5c8738bf..d3556168 100644 --- a/task/kaniko/0.3/README.md +++ b/task/kaniko/0.3/README.md @@ -22,7 +22,7 @@ makes it a perfect tool to be part of Tekton. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.3/kaniko.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.3/raw ``` ## Parameters diff --git a/task/kaniko/0.4/README.md b/task/kaniko/0.4/README.md index 9b308d89..6c6a20f7 100644 --- a/task/kaniko/0.4/README.md +++ b/task/kaniko/0.4/README.md @@ -22,7 +22,7 @@ makes it a perfect tool to be part of Tekton. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.4/kaniko.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.4/raw ``` ## Parameters diff --git a/task/kaniko/0.5/README.md b/task/kaniko/0.5/README.md index dd421a03..3f99347e 100644 --- a/task/kaniko/0.5/README.md +++ b/task/kaniko/0.5/README.md @@ -19,7 +19,7 @@ makes it a perfect tool to be part of Tekton. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.5/kaniko.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.5/raw ``` ## Parameters diff --git a/task/kaniko/0.6/README.md b/task/kaniko/0.6/README.md index 2998a4d7..9c9033b4 100644 --- a/task/kaniko/0.6/README.md +++ b/task/kaniko/0.6/README.md @@ -23,7 +23,7 @@ Both these results are needed in order for Chains to sign the image. See Chains ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.6/kaniko.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.6/raw ``` ## Parameters diff --git a/task/kn-apply/0.1/README.md b/task/kn-apply/0.1/README.md index 45f77b9f..5b5045f2 100644 --- a/task/kn-apply/0.1/README.md +++ b/task/kn-apply/0.1/README.md @@ -6,7 +6,7 @@ This task deploys a given image to a Knative Service using ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn-apply/0.1/kn-apply.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kn-apply/0.1/raw ``` ## Parameters @@ -37,7 +37,7 @@ with permission to manage Knative resources. To create a `ServiceAccount` with these permissions, you can run: ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn-apply/0.1/support/kn-deployer.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kn-apply/0.1/support/raw ``` The service account is being created for 'default' namespace, please edit the diff --git a/task/kn-apply/0.2/README.md b/task/kn-apply/0.2/README.md index 74a2ae32..eda6bc53 100644 --- a/task/kn-apply/0.2/README.md +++ b/task/kn-apply/0.2/README.md @@ -6,7 +6,7 @@ This task deploys a given image to a Knative Service using ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn-apply/0.2/kn-apply.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kn-apply/0.2/raw ``` ## Parameters @@ -37,7 +37,7 @@ with permission to manage Knative resources. To create a `ServiceAccount` with these permissions, you can run: ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn-apply/0.2/support/kn-deployer.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kn-apply/0.2/support/raw ``` The service account is being created for 'default' namespace, please edit the diff --git a/task/kn/0.1/README.md b/task/kn/0.1/README.md index bf7c56a1..d375485c 100644 --- a/task/kn/0.1/README.md +++ b/task/kn/0.1/README.md @@ -6,7 +6,7 @@ This Task performs operations on Knative resources (services, revisions, routes) ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn/0.1/kn.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kn/0.1/raw ``` ## Parameters @@ -45,7 +45,7 @@ with permission to manage Knative resources. To create a `ServiceAccount` with these permissions, you can run: ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn/0.1/support/kn-deployer.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kn/0.1/support/raw ``` ### Running the Task diff --git a/task/kn/0.2/README.md b/task/kn/0.2/README.md index c3d6dd0a..59b885b7 100644 --- a/task/kn/0.2/README.md +++ b/task/kn/0.2/README.md @@ -6,7 +6,7 @@ This Task performs operations on Knative resources (services, revisions, routes) ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn/0.2/kn.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kn/0.2/raw ``` ## Parameters @@ -45,7 +45,7 @@ with permission to manage Knative resources. To create a `ServiceAccount` with these permissions, you can run: ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn/0.2/support/kn-deployer.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kn/0.2/support/raw ``` ### Running the Task diff --git a/task/kn/0.2/knative-dockerfile-deploy/README.md b/task/kn/0.2/knative-dockerfile-deploy/README.md index a21ca031..079be471 100644 --- a/task/kn/0.2/knative-dockerfile-deploy/README.md +++ b/task/kn/0.2/knative-dockerfile-deploy/README.md @@ -82,17 +82,17 @@ kubectl create -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/k 4 - Install buildah task from tektoncd/catalog ```bash -https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.4/buildah.yaml +https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.4/buildah.yaml ``` 5 - Install the kn task from the tektoncd/catalog ```bash -https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn/0.2/kn.yaml +https://api.hub.tekton.dev/v1/resource/tekton/task/kn/0.2/kn.yaml ``` 5 - Install the git-clone task from the tektoncd/catalog ```bash -https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.8/git-clone.yaml +https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.8/git-clone.yaml ``` ## Pipelines: diff --git a/task/kube-linter/0.1/README.md b/task/kube-linter/0.1/README.md index 1e2b8f04..4070ff23 100644 --- a/task/kube-linter/0.1/README.md +++ b/task/kube-linter/0.1/README.md @@ -4,13 +4,13 @@ The [KubeLinter](https://github.com/stackrox/kube-linter) tool by StackRox is an ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kube-linter/0.1/kube-linter.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kube-linter/0.1/raw ``` ## Pre-requisite Install git-clone task from catalog ``` -https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.3/git-clone.yaml +https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.3/raw ``` ## Workspaces diff --git a/task/kubeconfig-creator/0.1/README.md b/task/kubeconfig-creator/0.1/README.md index b5eeb3ae..cb0096e2 100644 --- a/task/kubeconfig-creator/0.1/README.md +++ b/task/kubeconfig-creator/0.1/README.md @@ -23,7 +23,7 @@ This task provides users variety of ways to authenticate: ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubeconfig-creator/0.1/kubeconfig-creator.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kubeconfig-creator/0.1/raw ``` ## Workspace diff --git a/task/kubectl-deploy-pod/0.1/README.md b/task/kubectl-deploy-pod/0.1/README.md index 290b24c7..64696a64 100644 --- a/task/kubectl-deploy-pod/0.1/README.md +++ b/task/kubectl-deploy-pod/0.1/README.md @@ -6,7 +6,7 @@ This Task deploys (or delete) a Kubernetes resource (pod). It uses ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubectl-deploy-pod/0.1/kubectl-deploy-pod.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kubectl-deploy-pod/0.1/raw ``` ## Install ClusterRole diff --git a/task/kubernetes-actions/0.1/README.md b/task/kubernetes-actions/0.1/README.md index a8ca17c9..6922efea 100644 --- a/task/kubernetes-actions/0.1/README.md +++ b/task/kubernetes-actions/0.1/README.md @@ -5,7 +5,7 @@ This is a generic task used to perform kubernetes actions such as `kubectl get d ## Install the task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubernetes-actions/0.1/kubernetes-actions.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kubernetes-actions/0.1/raw ``` ## Inputs diff --git a/task/kubernetes-actions/0.2/README.md b/task/kubernetes-actions/0.2/README.md index f194c33b..207b8f28 100644 --- a/task/kubernetes-actions/0.2/README.md +++ b/task/kubernetes-actions/0.2/README.md @@ -5,7 +5,7 @@ This is a generic task used to perform kubernetes actions such as `kubectl get d ## Install the task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubernetes-actions/0.2/kubernetes-actions.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kubernetes-actions/0.2/raw ``` ## Inputs diff --git a/task/kubeval/0.1/README.md b/task/kubeval/0.1/README.md index d36d6267..b3afe39d 100644 --- a/task/kubeval/0.1/README.md +++ b/task/kubeval/0.1/README.md @@ -8,7 +8,7 @@ your Tekton pipelines. Kubeval is a tool used for validating Kubernetes configur In order to use Kubeval with Tekton you need to first install the task. ```console -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubeval/0.1/kubeval.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kubeval/0.1/raw ``` ## Platforms diff --git a/task/makisu/0.1/README.md b/task/makisu/0.1/README.md index 58f0fa35..71506eba 100644 --- a/task/makisu/0.1/README.md +++ b/task/makisu/0.1/README.md @@ -39,7 +39,7 @@ kubectl --namespace default create secret generic docker-registry-config --from- ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/makisu/0.1/makisu.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/makisu/0.1/raw ``` ## Parameters diff --git a/task/markdown-lint/0.1/README.md b/task/markdown-lint/0.1/README.md index 260b7f12..db174a03 100644 --- a/task/markdown-lint/0.1/README.md +++ b/task/markdown-lint/0.1/README.md @@ -5,7 +5,7 @@ The following task is used to provide static analysis on README files mounted us ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/markdown-lint/0.1/markdown-lint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/markdown-lint/0.1/raw ``` ## Parameters @@ -25,7 +25,7 @@ The Task can be run on `linux/amd64` platform. 1. Create the `git-clone` task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw ``` 2. Create the PVC diff --git a/task/maven/0.1/README.md b/task/maven/0.1/README.md index f4bbcf63..4ba4b6a1 100644 --- a/task/maven/0.1/README.md +++ b/task/maven/0.1/README.md @@ -5,7 +5,7 @@ This Task can be used to run a Maven goals on a simple maven project. ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/maven/0.1/maven.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/maven/0.1/raw ``` ## Parameters diff --git a/task/maven/0.2/README.md b/task/maven/0.2/README.md index 8a70f3cb..ebbbe57c 100644 --- a/task/maven/0.2/README.md +++ b/task/maven/0.2/README.md @@ -5,7 +5,7 @@ This Task can be used to run a Maven goals on a simple maven project or on a mul ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/maven/0.2/maven.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/maven/0.2/raw ``` ## Parameters diff --git a/task/mypy-lint/0.1/README.md b/task/mypy-lint/0.1/README.md index c5702b76..23dda989 100644 --- a/task/mypy-lint/0.1/README.md +++ b/task/mypy-lint/0.1/README.md @@ -7,7 +7,7 @@ The following task is used to provide static analysis on python files mounted us ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/mypy-lint/0.1/mypy-lint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/mypy-lint/0.1/raw ``` ## Parameters @@ -27,7 +27,7 @@ The Task can be run on `linux/amd64` platform. 1. Create the `git-clone` task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw ``` 2. Create the PVC diff --git a/task/mypy-lint/0.2/README.md b/task/mypy-lint/0.2/README.md index 53b063a8..f9c02550 100644 --- a/task/mypy-lint/0.2/README.md +++ b/task/mypy-lint/0.2/README.md @@ -7,7 +7,7 @@ The following task is used to provide static analysis on python files mounted us ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/mypy-lint/0.2/mypy-lint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/mypy-lint/0.2/raw ``` ## Parameters @@ -29,7 +29,7 @@ The Task can be run on `linux/amd64` platform. 1. Create the `git-clone` task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw ``` 2. Create the PVC diff --git a/task/nexus-lifecycle-scan/0.1/README.md b/task/nexus-lifecycle-scan/0.1/README.md index 90f77133..22365a57 100644 --- a/task/nexus-lifecycle-scan/0.1/README.md +++ b/task/nexus-lifecycle-scan/0.1/README.md @@ -17,7 +17,7 @@ Invokes a Nexus Lifecycle scan #### Install Task ```shell -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/exus-lifecycle-scan/0.1/nexus-lifecycle-scan.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/exus-lifecycle-scan/0.1/raw ``` #### Parameters diff --git a/task/npm/0.1/README.md b/task/npm/0.1/README.md index 77e9b31f..c74b09fb 100644 --- a/task/npm/0.1/README.md +++ b/task/npm/0.1/README.md @@ -5,7 +5,7 @@ This task can be used to run `npm` goals on a source code with the default envir ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/npm/0.1/npm.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/npm/0.1/raw ``` ## Parameters @@ -26,7 +26,7 @@ The Task can be run on `linux/amd64`, `linux/s390x`, and `linux/ppc64le` platfor ## Usage -1. Apply the [`git-clone`](https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.2/git-clone.yaml) task which will help to clone the repository. +1. Apply the [`git-clone`](https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.2/raw) task which will help to clone the repository. 2. Apply the sample [run.yaml](https://raw.githubusercontent.com/tektoncd/catalog/main/task/npm/0.1/tests/run.yaml) which will clone the [tektoncd/hub](https://github.com/tektoncd/hub) repo and perform few npm goals:- - install dependencies using `npm clean-install` diff --git a/task/openshift-client-kubecfg/0.1/README.md b/task/openshift-client-kubecfg/0.1/README.md index 0c4f3493..b7881097 100644 --- a/task/openshift-client-kubecfg/0.1/README.md +++ b/task/openshift-client-kubecfg/0.1/README.md @@ -7,7 +7,7 @@ Openshift-client-kubecfg runs commands against any cluster that is provided to i ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-client-kubecfg/0.1/openshift-client-kubecfg.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/openshift-client-kubecfg/0.1/raw ``` diff --git a/task/openshift-client-python/0.1/README.md b/task/openshift-client-python/0.1/README.md index f282423d..d1894dde 100644 --- a/task/openshift-client-python/0.1/README.md +++ b/task/openshift-client-python/0.1/README.md @@ -11,7 +11,7 @@ The set of possible scripts can be found in the docs [here](https://github.com/o ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-client-python/0.1/openshift-client-python.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/openshift-client-python/0.1/raw ``` ## Parameters diff --git a/task/openshift-client/0.1/README.md b/task/openshift-client/0.1/README.md index b5e8b86c..8e51b4b6 100644 --- a/task/openshift-client/0.1/README.md +++ b/task/openshift-client/0.1/README.md @@ -7,7 +7,7 @@ Openshift-client runs commands against the cluster where the task run is being e ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-client/0.1/openshift-client.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/openshift-client/0.1/raw ``` ## Parameters diff --git a/task/openshift-client/0.2/README.md b/task/openshift-client/0.2/README.md index e4013582..65138479 100644 --- a/task/openshift-client/0.2/README.md +++ b/task/openshift-client/0.2/README.md @@ -14,7 +14,7 @@ Openshift-client runs commands against the cluster provided by the user via opti ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-client/0.2/openshift-client.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/openshift-client/0.2/raw ``` ## Parameters diff --git a/task/openshift-install/0.1/README.md b/task/openshift-install/0.1/README.md index 42fa2f6c..09abacaf 100644 --- a/task/openshift-install/0.1/README.md +++ b/task/openshift-install/0.1/README.md @@ -14,7 +14,7 @@ The following task is used to create the cluster. ### **Install the Task** ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-install/0.1/openshift-install.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/openshift-install/0.1/raw ``` ### **Parameters** diff --git a/task/openshift-uninstall/0.1/README.md b/task/openshift-uninstall/0.1/README.md index 160ffc0b..e7157494 100644 --- a/task/openshift-uninstall/0.1/README.md +++ b/task/openshift-uninstall/0.1/README.md @@ -13,7 +13,7 @@ Guide to provision a cluster on AWS can be found [here](https://docs.openshift.c ### **Install the Task** ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-uninstall/0.1/openshift-uninstall.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/openshift-uninstall/0.1/raw ``` ### **Workspaces** diff --git a/task/pluto/0.1/README.md b/task/pluto/0.1/README.md index 87c1d6b0..6ea32a59 100644 --- a/task/pluto/0.1/README.md +++ b/task/pluto/0.1/README.md @@ -6,7 +6,7 @@ in their code repositories and their helm releases. Install `pluto` task: ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pluto/0.1/pluto.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/pluto/0.1/raw ``` ## Parameters diff --git a/task/powershell/0.1/README.md b/task/powershell/0.1/README.md index a4aade9c..4bda87ce 100644 --- a/task/powershell/0.1/README.md +++ b/task/powershell/0.1/README.md @@ -5,7 +5,7 @@ The following task helps you to run powershell commands. ### Install powershell ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/powershell/0.1/powershell.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/powershell/0.1/raw ``` ## Parameters diff --git a/task/pull-request/0.1/README.md b/task/pull-request/0.1/README.md index 99696bff..72c5314d 100644 --- a/task/pull-request/0.1/README.md +++ b/task/pull-request/0.1/README.md @@ -29,7 +29,7 @@ workspace. To install the Task: ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pull-request/0.1/pull-request.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/pull-request/0.1/raw ``` ## Configuring the Tasks diff --git a/task/pylint/0.1/README.md b/task/pylint/0.1/README.md index aecfb48c..bd804939 100644 --- a/task/pylint/0.1/README.md +++ b/task/pylint/0.1/README.md @@ -13,7 +13,7 @@ The task provides linting based on [pylint](https://pypi.org/project/pylint/) fo ### Install pylint ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pylint/0.1/pylint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/pylint/0.1/raw ``` ## Parameters diff --git a/task/pylint/0.2/README.md b/task/pylint/0.2/README.md index f2875cf3..b39bd6a9 100644 --- a/task/pylint/0.2/README.md +++ b/task/pylint/0.2/README.md @@ -10,7 +10,7 @@ The task provides linting based on [pylint](https://pypi.org/project/pylint/) fo ### Install the pylint task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pylint/0.2/pylint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/pylint/0.2/raw ``` ## Parameters diff --git a/task/pytest/0.1/README.md b/task/pytest/0.1/README.md index dc954d15..36f8143b 100644 --- a/task/pytest/0.1/README.md +++ b/task/pytest/0.1/README.md @@ -13,7 +13,7 @@ The task provides test execution based on [pytest](https://pypi.org/project/pyte ### Install pytest ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pytest/0.1/pytest.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/pytest/0.1/raw ``` ## Parameters diff --git a/task/python-coverage/0.1/README.md b/task/python-coverage/0.1/README.md index 975f891b..74c7200e 100644 --- a/task/python-coverage/0.1/README.md +++ b/task/python-coverage/0.1/README.md @@ -13,7 +13,7 @@ The task provides code coverage based on [coverage](https://coverage.readthedocs ### Install pytest ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/python-coverage/0.1/python-coverage.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/python-coverage/0.1/raw ``` ## Parameters diff --git a/task/redhat-codeready-dependency-analysis/0.1/README.md b/task/redhat-codeready-dependency-analysis/0.1/README.md index 08e341c8..bdd9925e 100644 --- a/task/redhat-codeready-dependency-analysis/0.1/README.md +++ b/task/redhat-codeready-dependency-analysis/0.1/README.md @@ -104,7 +104,7 @@ The link to detailed report will take users to a browser window having similar f ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/redhat-codeready-dependency-analysis/0.1/redhat-codeready-dependency-analysis.yaml -n +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/redhat-codeready-dependency-analysis/0.1/raw -n ``` ## Platforms diff --git a/task/remote-ssh-commands/0.1/README.md b/task/remote-ssh-commands/0.1/README.md index 1c147cbb..ef5b149b 100644 --- a/task/remote-ssh-commands/0.1/README.md +++ b/task/remote-ssh-commands/0.1/README.md @@ -5,7 +5,7 @@ This task can be used to run shell commands on remote machine and produce the re ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/remote-ssh-commands/0.1/remote-ssh-commands.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/remote-ssh-commands/0.1/raw ``` ## Parameters diff --git a/task/replace-tokens/0.1/README.md b/task/replace-tokens/0.1/README.md index 78b26c20..cb56fd3d 100644 --- a/task/replace-tokens/0.1/README.md +++ b/task/replace-tokens/0.1/README.md @@ -35,7 +35,7 @@ The above same can be done for the `YAML` file also. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/replace-tokens/0.1/replace-tokens.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/replace-tokens/0.1/raw ``` ## Parameters diff --git a/task/robot-framework/0.1/README.md b/task/robot-framework/0.1/README.md index cb544ceb..ae67d536 100644 --- a/task/robot-framework/0.1/README.md +++ b/task/robot-framework/0.1/README.md @@ -5,7 +5,7 @@ This task runs [Robot Framework](https://robotframework.org/) tests that are pro ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/robot-framework/0.1/robot-framework.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/robot-framework/0.1/raw ``` ## Workspaces diff --git a/task/rsync/0.1/README.md b/task/rsync/0.1/README.md index 51bca46b..4a5789e2 100644 --- a/task/rsync/0.1/README.md +++ b/task/rsync/0.1/README.md @@ -5,7 +5,7 @@ This task provides synchronization of files between container and remote host. I ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/rsync/0.1/rsync.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/rsync/0.1/raw ``` ## Workspaces diff --git a/task/ruby-lint/0.1/README.md b/task/ruby-lint/0.1/README.md index 38bd7cc5..94d19297 100644 --- a/task/ruby-lint/0.1/README.md +++ b/task/ruby-lint/0.1/README.md @@ -5,7 +5,7 @@ The following task is used to provide static analysis on YAML files mounted usin ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ruby-lint/0.1/ruby-lint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/ruby-lint/0.1/raw ``` ## Parameters @@ -25,7 +25,7 @@ The Task can be run on `linux/amd64` platform. 1. Create the `git-clone` task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw ``` 2. Create the PVC diff --git a/task/s2i/0.1/README.md b/task/s2i/0.1/README.md index 262d0262..d835ff55 100644 --- a/task/s2i/0.1/README.md +++ b/task/s2i/0.1/README.md @@ -11,7 +11,7 @@ source code. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/s2i/0.1/s2i.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/s2i/0.1/raw ``` ## Parameters diff --git a/task/s2i/0.2/README.md b/task/s2i/0.2/README.md index 1e57ed00..bef83d8d 100644 --- a/task/s2i/0.2/README.md +++ b/task/s2i/0.2/README.md @@ -11,7 +11,7 @@ source code. ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/s2i/0.2/s2i.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/s2i/0.2/raw ``` ## Parameters diff --git a/task/s2i/0.3/README.md b/task/s2i/0.3/README.md index 7d256ef1..7824d0f7 100644 --- a/task/s2i/0.3/README.md +++ b/task/s2i/0.3/README.md @@ -16,7 +16,7 @@ source code. ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/s2i/0.3/s2i.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/s2i/0.3/raw ``` ## Parameters diff --git a/task/scorecard/0.1/README.md b/task/scorecard/0.1/README.md index 8573f7b3..eba6b9dd 100644 --- a/task/scorecard/0.1/README.md +++ b/task/scorecard/0.1/README.md @@ -5,7 +5,7 @@ These tasks provides scorecard results based on the [OSSF Scorecards](https://gi ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/scorecard/0.1/scorecard.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/scorecard/0.1/raw ``` ## Parameters diff --git a/task/send-to-channel-slack/0.1/README.md b/task/send-to-channel-slack/0.1/README.md index a8e67745..eb9fe976 100644 --- a/task/send-to-channel-slack/0.1/README.md +++ b/task/send-to-channel-slack/0.1/README.md @@ -13,7 +13,7 @@ The app must join the channel before the message posted by this task run. (invit ## Install the Task and create a secret ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-channel-slack/0.1/send-to-channel-slack.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/send-to-channel-slack/0.1/raw ``` Create a secret that has the OAuth token of the bot app. diff --git a/task/send-to-microsoft-teams/0.1/README.md b/task/send-to-microsoft-teams/0.1/README.md index e69f5722..2c3c6cfb 100644 --- a/task/send-to-microsoft-teams/0.1/README.md +++ b/task/send-to-microsoft-teams/0.1/README.md @@ -10,7 +10,7 @@ Create this webhook as described [here](https://docs.microsoft.com/en-us/microso ## Install the Task and create a secret ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-microsoft-teams/0.1/send-to-microsoft-teams.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/send-to-microsoft-teams/0.1/raw ``` Create a secret that has the webhook URL in it. diff --git a/task/send-to-telegram/0.1/README.md b/task/send-to-telegram/0.1/README.md index 230b422d..60c81fa4 100644 --- a/task/send-to-telegram/0.1/README.md +++ b/task/send-to-telegram/0.1/README.md @@ -10,7 +10,7 @@ Create a bot as decribed over [here](https://core.telegram.org/bots). ## Install the Task and create a secret ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-telegram/0.1/send-to-telegram.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/send-to-telegram/0.1/raw ``` Create a secret that has bot token. diff --git a/task/send-to-webex-room/0.1/README.md b/task/send-to-webex-room/0.1/README.md index ed9640db..96080a69 100644 --- a/task/send-to-webex-room/0.1/README.md +++ b/task/send-to-webex-room/0.1/README.md @@ -10,7 +10,7 @@ Create a bot as decribed over [here](https://developer.webex.com/docs/bots). ## Install the Task and create a secret ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-webex-room/0.1/send-to-webex-room.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/send-to-webex-room/0.1/raw ``` Create a secret that has the Webex API bot token. diff --git a/task/send-to-webhook-discord/0.1/README.md b/task/send-to-webhook-discord/0.1/README.md index b6d8e8af..11fd1b14 100644 --- a/task/send-to-webhook-discord/0.1/README.md +++ b/task/send-to-webhook-discord/0.1/README.md @@ -10,7 +10,7 @@ Follow instructions [here](https://support.discord.com/hc/en-us/articles/2283836 ## Install the Task and create a secret ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-webhook-discord/0.1/send-to-webhook-discord.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/send-to-webhook-discord/0.1/raw ``` Create a secret that has the generated webhook URL diff --git a/task/send-to-webhook-slack/0.1/README.md b/task/send-to-webhook-slack/0.1/README.md index d692c71a..e0484ece 100644 --- a/task/send-to-webhook-slack/0.1/README.md +++ b/task/send-to-webhook-slack/0.1/README.md @@ -11,7 +11,7 @@ Follow instructions [here](https://api.slack.com/messaging/webhooks) to generate ## Install the Task and create a secret ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-webhook-slack/0.1/send-to-webhook-slack.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/send-to-webhook-slack/0.1/raw ``` Create a secret that has the generated webhook URL diff --git a/task/sendmail/0.1/README.md b/task/sendmail/0.1/README.md index 1c5b420e..aafe880f 100644 --- a/task/sendmail/0.1/README.md +++ b/task/sendmail/0.1/README.md @@ -5,7 +5,7 @@ This task sends a simple email to receivers via SMTP server ## Install the Task and create a secret ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/sendmail/0.1/sendmail.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/sendmail/0.1/raw ``` Create a secret that has the SMTP server information diff --git a/task/shellcheck/0.1/README.md b/task/shellcheck/0.1/README.md index cf1b2b5f..359629c1 100644 --- a/task/shellcheck/0.1/README.md +++ b/task/shellcheck/0.1/README.md @@ -5,7 +5,7 @@ The following task is used to provide static analysis on YAML files mounted usin ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/shellcheck/0.1/shellcheck.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/shellcheck/0.1/raw ``` ## Parameters @@ -25,7 +25,7 @@ The Task can be run on `linux/amd64` platform. 1. Create the `git-clone` task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw ``` 2. Create the PVC diff --git a/task/skopeo-copy/0.1/README.md b/task/skopeo-copy/0.1/README.md index ffef3d8e..c716ab5b 100644 --- a/task/skopeo-copy/0.1/README.md +++ b/task/skopeo-copy/0.1/README.md @@ -39,7 +39,7 @@ This `task` can be used to copy one or more than one images to-and fro various s ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/skopeo-copy/0.1/skopeo-copy.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/skopeo-copy/0.1/raw ``` ## Parameters diff --git a/task/skopeo-copy/0.2/README.md b/task/skopeo-copy/0.2/README.md index 98f61950..46953a9a 100644 --- a/task/skopeo-copy/0.2/README.md +++ b/task/skopeo-copy/0.2/README.md @@ -39,7 +39,7 @@ This `task` can be used to copy one or more than one images to-and fro various s ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/skopeo-copy/0.2/skopeo-copy.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/skopeo-copy/0.2/raw ``` ## Parameters diff --git a/task/sonarqube-scanner/0.1/README.md b/task/sonarqube-scanner/0.1/README.md index efa73ffa..519349b7 100644 --- a/task/sonarqube-scanner/0.1/README.md +++ b/task/sonarqube-scanner/0.1/README.md @@ -9,7 +9,7 @@ For creating your own `sonar-project.properties` please follow the guide [here]( ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/sonarqube-scanner/0.1/sonarqube-scanner.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-scanner/0.1/raw ``` ## Pre-requisite diff --git a/task/sonarqube-scanner/0.2/README.md b/task/sonarqube-scanner/0.2/README.md index eac9386a..b2a45322 100644 --- a/task/sonarqube-scanner/0.2/README.md +++ b/task/sonarqube-scanner/0.2/README.md @@ -9,7 +9,7 @@ For creating your own `sonar-project.properties` please follow the guide [here]( ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/sonarqube-scanner/0.2/sonarqube-scanner.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-scanner/0.2/raw ``` ## Pre-requisite @@ -17,7 +17,7 @@ kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/so Install the `git-clone` task from the catalog ``` -https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.5/git-clone.yaml +https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.5/raw ``` ## Parameters diff --git a/task/stackrox-image-check/0.1/README.md b/task/stackrox-image-check/0.1/README.md index f6fd280b..b96b48fe 100644 --- a/task/stackrox-image-check/0.1/README.md +++ b/task/stackrox-image-check/0.1/README.md @@ -9,7 +9,7 @@ This task requires an active installation of [Red Hat Advanced Cluster Security ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/stackrox-image-scan/0.1/stackrox-image-scan.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/stackrox-image-scan/0.1/raw ``` ## Parameters diff --git a/task/stackrox-image-scan/0.1/README.md b/task/stackrox-image-scan/0.1/README.md index 3890091c..33b6d14d 100644 --- a/task/stackrox-image-scan/0.1/README.md +++ b/task/stackrox-image-scan/0.1/README.md @@ -9,7 +9,7 @@ This task requires an active installation of [Red Hat Advanced Cluster Security ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/stackrox-image-scan/0.1/stackrox-image-scan.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/stackrox-image-scan/0.1/raw ``` ## Parameters diff --git a/task/tekton-catalog-publish/0.1/README.md b/task/tekton-catalog-publish/0.1/README.md index 8ce17dda..08bdf27b 100644 --- a/task/tekton-catalog-publish/0.1/README.md +++ b/task/tekton-catalog-publish/0.1/README.md @@ -11,7 +11,7 @@ in `tkn` starting with version v0.18.0. ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tekton-catalog-publish/0.1/tekton-catalog-publush.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/tekton-catalog-publish/0.1/raw ``` ## Parameters diff --git a/task/tekton-operator-install/0.1/README.md b/task/tekton-operator-install/0.1/README.md index 73af1915..af8aa7ae 100644 --- a/task/tekton-operator-install/0.1/README.md +++ b/task/tekton-operator-install/0.1/README.md @@ -5,7 +5,7 @@ This task can be used to install Tekton pipelines and also it's components using ## Install the Task ```shell -kubectl apply --filename https://raw.githubusercontent.com/tektoncd/catalog/main/task/tekton-operator-install/0.1/tekton-operator-install.yaml +kubectl apply --filename https://api.hub.tekton.dev/v1/resource/tekton/task/tekton-operator-install/0.1/raw ``` ## Parameters diff --git a/task/terraform-cli/0.1/README.md b/task/terraform-cli/0.1/README.md index f3d32e4c..bc32e0ac 100644 --- a/task/terraform-cli/0.1/README.md +++ b/task/terraform-cli/0.1/README.md @@ -8,7 +8,7 @@ Install `terraform-cli` task for kubernetes 1.6+: ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/terraform-cli/0.1/terraform-cli.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/terraform-cli/0.1/raw ``` This task currently works only on kubernetes 1.6+ support for a task that works on older versions of kubernetes will be added soon. diff --git a/task/tkn/0.1/README.md b/task/tkn/0.1/README.md index 29047321..e17ee166 100644 --- a/task/tkn/0.1/README.md +++ b/task/tkn/0.1/README.md @@ -6,7 +6,7 @@ This task performs operations on Tekton resources using ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tkn/0.1/tkn.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/tkn/0.1/raw ``` ## Parameters diff --git a/task/tkn/0.2/README.md b/task/tkn/0.2/README.md index 2e568605..7f5621f2 100644 --- a/task/tkn/0.2/README.md +++ b/task/tkn/0.2/README.md @@ -6,7 +6,7 @@ This task performs operations on Tekton resources using ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tkn/0.2/tkn.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/tkn/0.2/raw ``` ## Parameters diff --git a/task/tkn/0.3/README.md b/task/tkn/0.3/README.md index 4bf58374..f436df5a 100644 --- a/task/tkn/0.3/README.md +++ b/task/tkn/0.3/README.md @@ -6,7 +6,7 @@ This task performs operations on Tekton resources using ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tkn/0.3/tkn.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/tkn/0.3/raw ``` ## Parameters diff --git a/task/tkn/0.4/README.md b/task/tkn/0.4/README.md index ed0bd7b5..d4a9e6f9 100644 --- a/task/tkn/0.4/README.md +++ b/task/tkn/0.4/README.md @@ -6,7 +6,7 @@ This task performs operations on Tekton resources using ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tkn/0.4/tkn.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/tkn/0.4/raw ``` ## Parameters diff --git a/task/trigger-jenkins-job/0.1/README.md b/task/trigger-jenkins-job/0.1/README.md index fe2225fd..d0751036 100644 --- a/task/trigger-jenkins-job/0.1/README.md +++ b/task/trigger-jenkins-job/0.1/README.md @@ -7,7 +7,7 @@ More details on Remote Access API can be found [here](https://www.jenkins.io/doc ## Install the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/trigger-jenkins-job/0.1/trigger-jenkins-job.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/trigger-jenkins-job/0.1/raw ``` ## Parameters diff --git a/task/ts-lint/0.1/README.md b/task/ts-lint/0.1/README.md index 236d6153..189843b2 100644 --- a/task/ts-lint/0.1/README.md +++ b/task/ts-lint/0.1/README.md @@ -5,7 +5,7 @@ The following task is used to provide static analysis on YAML files mounted usin ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ts-lint/0.1/ts-lint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/ts-lint/0.1/raw ``` ## Parameters @@ -25,7 +25,7 @@ The Task can be run on `linux/amd64` platform. 1. Create the `git-clone` task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw ``` 2. Create the PVC diff --git a/task/wget/0.1/README.md b/task/wget/0.1/README.md index 9f25dd70..5338c7ab 100644 --- a/task/wget/0.1/README.md +++ b/task/wget/0.1/README.md @@ -6,7 +6,7 @@ This task uses wget to download files from the internet to a workspace . ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/wget/0.1/wget.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/wget/0.1/raw ``` ## Parameters diff --git a/task/write-file/0.1/README.md b/task/write-file/0.1/README.md index 993cda7c..e1c7df18 100644 --- a/task/write-file/0.1/README.md +++ b/task/write-file/0.1/README.md @@ -7,7 +7,7 @@ file. It can also set specific permissions on the file. ## Install the Task ``` -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/write-file/0.1/write-file.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/write-file/0.1/raw ``` ## Parameters diff --git a/task/yaml-lint/0.1/README.md b/task/yaml-lint/0.1/README.md index ac478333..49ed8e8a 100644 --- a/task/yaml-lint/0.1/README.md +++ b/task/yaml-lint/0.1/README.md @@ -5,7 +5,7 @@ The following task is used to provide static analysis on YAML files mounted usin ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/yaml-lint/0.1/yaml-lint.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/yaml-lint/0.1/raw ``` ## Parameters @@ -25,7 +25,7 @@ The Task can be run on `linux/amd64` platform. 1. Create the `git-clone` task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw ``` 2. Create the PVC diff --git a/task/yq/0.1/README.md b/task/yq/0.1/README.md index 1dd98b2b..42b74c61 100644 --- a/task/yq/0.1/README.md +++ b/task/yq/0.1/README.md @@ -5,7 +5,7 @@ The following task is used to replace a specific field in a yaml in the workspac ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/yq/0.1/yq.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/yq/0.1/raw ``` ## Parameters diff --git a/task/yq/0.2/README.md b/task/yq/0.2/README.md index ef44d73c..6361eec0 100644 --- a/task/yq/0.2/README.md +++ b/task/yq/0.2/README.md @@ -5,7 +5,7 @@ The following task is used to replace a specific field in a yaml in the workspac ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/yq/0.2/yq.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/yq/0.2/raw ``` ## Parameters diff --git a/task/yq/0.3/README.md b/task/yq/0.3/README.md index c37e2843..49052ea7 100644 --- a/task/yq/0.3/README.md +++ b/task/yq/0.3/README.md @@ -5,7 +5,7 @@ The following task is used to replace a specific field in a yaml in the workspac ## Installing the Task ```bash -kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/yq/0.3/yq.yaml +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/yq/0.3/raw ``` ## Parameters