diff --git a/.claude/skills/task-authoring/SKILL.md b/.claude/skills/task-authoring/SKILL.md index 781074c172..8381e9d9ef 100644 --- a/.claude/skills/task-authoring/SKILL.md +++ b/.claude/skills/task-authoring/SKILL.md @@ -120,7 +120,7 @@ One-line description of what this task does. ## Install the Task -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task//0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task//0.1/.yaml ## Parameters diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4f079d3db4..3e310ce2e6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -49,18 +49,21 @@ jobs: env: PULL_BASE_SHA: ${{ github.event.pull_request.base.sha }} run: | - # Detect changed task version directories (task//). - # Reduce every changed file to its version directory so that catlin - # only validates the catalog resource itself, never the test - # manifests under tests/ (TaskRun/Pipeline) or files under samples/, - # which are not catalog resources and would fail validation. + # Detect task version directories (task//) whose + # resource manifest changed. Only consider YAML files that live + # directly in the version directory (task///*.yaml); + # this excludes README/OWNERS-only changes as well as the test + # manifests under tests/ (TaskRun/Pipeline) and files under samples/, + # none of which are catalog resources. Reducing to the version + # directory means catlin only ever validates the catalog resource. changed_tasks=$( git --no-pager diff --name-only ${PULL_BASE_SHA}..HEAD | \ + { grep -E '^task/[^/]+/[^/]+/[^/]+\.yaml$' || true; } | \ { grep -oE '^task/[^/]+/[^/]+' || true; } | \ sort -u ) if [[ -z "$changed_tasks" ]]; then - echo "No file changes detected in task directories" + echo "No changed task resource manifests detected" exit 0 fi # Filter out removed directories @@ -78,15 +81,16 @@ jobs: env: PULL_BASE_SHA: ${{ github.event.pull_request.base.sha }} run: | - # Detect changed task version directories (task//). + # Detect task version directories whose resource manifest changed. # See the note in the "catlin validate" step above. changed_tasks=$( git --no-pager diff --name-only ${PULL_BASE_SHA}..HEAD | \ + { grep -E '^task/[^/]+/[^/]+/[^/]+\.yaml$' || true; } | \ { grep -oE '^task/[^/]+/[^/]+' || true; } | \ sort -u ) if [[ -z "$changed_tasks" ]]; then - echo "No file changes detected in task directories" + echo "No changed task resource manifests detected" exit 0 fi # Script linting is informational (matching previous Prow behavior) diff --git a/pipeline/build-push-gke-deploy/0.1/README.md b/pipeline/build-push-gke-deploy/0.1/README.md index 948b2db655..ef599b5fe5 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://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.2/raw +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/gke-deploy/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gke-deploy/0.1/gke-deploy.yaml ``` ## Install the Pipeline ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/pipeline/build-push-gke-deploy/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/pipeline/build-push-gke-deploy/0.1/build-push-gke-deploy.yaml ``` ## 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 bb9aa1b5df..471866df6d 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://api.hub.tekton.dev/v1/resource/tekton/pipeline/build-push-gke-deploy/0.1/raw + kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/pipeline/build-push-gke-deploy/0.1/build-push-gke-deploy.yaml ``` 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 9d4f82266b..54b26cb5e5 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://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 +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 ``` #### Install pipeline ```shell -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/pipeline/buildpacks/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/pipeline/buildpacks/0.1/buildpacks.yaml ``` ## Workspaces diff --git a/pipeline/buildpacks/0.2/README.md b/pipeline/buildpacks/0.2/README.md index 353f309e64..6c18e8de8c 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://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 +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 ``` #### Install pipeline ```shell -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/pipeline/buildpacks/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/pipeline/buildpacks/0.2/buildpacks.yaml ``` ## Workspaces diff --git a/roadmap.md b/roadmap.md index e37b5a95ca..574eb341f3 100644 --- a/roadmap.md +++ b/roadmap.md @@ -7,7 +7,7 @@ The catalog is a key piece of In 2019 we got a solid start on a catalog of reusable `Tasks` and in 2020 our ecosystem grew and a lot many `Tasks` were added in the catalog. Also our catalog was restructured so that `Tasks` present -in the catalog could be versioned and tools like [`hub`](https://hub.tekton.dev) was able to display +in the catalog could be versioned and tools like [`hub`](https://artifacthub.io) was able to display those tasks in a clean and better way. In 2021 we want to keep this momentum going and make the catalog even more useful by adding: diff --git a/task/42crunch-api-security-audit/0.1/README.md b/task/42crunch-api-security-audit/0.1/README.md index 9af7b2c76f..d927a6b816 100644 --- a/task/42crunch-api-security-audit/0.1/README.md +++ b/task/42crunch-api-security-audit/0.1/README.md @@ -9,7 +9,7 @@ and data coming in and going out. Install `42crunch-api-security-audit` task: ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/42crunch-api-security-audit/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/42crunch-api-security-audit/0.1/42crunch-api-security-audit.yaml ``` ## Prerequisites diff --git a/task/42crunch-api-security-audit/0.1/samples/README.md b/task/42crunch-api-security-audit/0.1/samples/README.md index 6ca1a65a9c..fab5d9e208 100644 --- a/task/42crunch-api-security-audit/0.1/samples/README.md +++ b/task/42crunch-api-security-audit/0.1/samples/README.md @@ -15,9 +15,9 @@ Run these commands to create and execute the pipeline: ```sh -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.6/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.6/git-clone.yaml -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/42crunch-api-security-audit/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/42crunch-api-security-audit/0.1/42crunch-api-security-audit.yaml kubectl apply -f secret.yaml diff --git a/task/42crunch-api-security-audit/0.2/README.md b/task/42crunch-api-security-audit/0.2/README.md index 5044c1704c..c678ff791b 100644 --- a/task/42crunch-api-security-audit/0.2/README.md +++ b/task/42crunch-api-security-audit/0.2/README.md @@ -9,7 +9,7 @@ and data coming in and going out. Install `42crunch-api-security-audit` task: ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/42crunch-api-security-audit/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/42crunch-api-security-audit/0.2/42crunch-api-security-audit.yaml ``` ## Prerequisites diff --git a/task/42crunch-api-security-audit/0.2/samples/README.md b/task/42crunch-api-security-audit/0.2/samples/README.md index 6ca1a65a9c..fab5d9e208 100644 --- a/task/42crunch-api-security-audit/0.2/samples/README.md +++ b/task/42crunch-api-security-audit/0.2/samples/README.md @@ -15,9 +15,9 @@ Run these commands to create and execute the pipeline: ```sh -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.6/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.6/git-clone.yaml -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/42crunch-api-security-audit/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/42crunch-api-security-audit/0.1/42crunch-api-security-audit.yaml kubectl apply -f secret.yaml diff --git a/task/42crunch-api-security-audit/0.3/README.md b/task/42crunch-api-security-audit/0.3/README.md index 861a777437..f04cf6cfb1 100644 --- a/task/42crunch-api-security-audit/0.3/README.md +++ b/task/42crunch-api-security-audit/0.3/README.md @@ -9,7 +9,7 @@ and data coming in and going out. Install `42crunch-api-security-audit` task: ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/42crunch-api-security-audit/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/42crunch-api-security-audit/0.3/42crunch-api-security-audit.yaml ``` ## Prerequisites diff --git a/task/42crunch-api-security-audit/0.3/samples/README.md b/task/42crunch-api-security-audit/0.3/samples/README.md index 6ca1a65a9c..fab5d9e208 100644 --- a/task/42crunch-api-security-audit/0.3/samples/README.md +++ b/task/42crunch-api-security-audit/0.3/samples/README.md @@ -15,9 +15,9 @@ Run these commands to create and execute the pipeline: ```sh -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.6/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.6/git-clone.yaml -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/42crunch-api-security-audit/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/42crunch-api-security-audit/0.1/42crunch-api-security-audit.yaml kubectl apply -f secret.yaml diff --git a/task/ansible-builder/0.1/README.md b/task/ansible-builder/0.1/README.md index 1f30b7fd2c..462d8bc166 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://api.hub.tekton.dev/v1/resource/tekton/task/ansible-builder/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ansible-builder/0.1/ansible-builder.yaml ``` ## Parameters diff --git a/task/ansible-runner/0.1/README.md b/task/ansible-runner/0.1/README.md index cd6e5e6815..8ef7f78ba7 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://api.hub.tekton.dev/v1/resource/tekton/task/ansible-runner/0.1/raw +kubectl apply --filename https://raw.githubusercontent.com/tektoncd/catalog/main/task/ansible-runner/0.1/ansible-runner.yaml ``` 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw \ +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml \ -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 257bc2d220..1038381031 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://api.hub.tekton.dev/v1/resource/tekton/task/ansible-runner/0.2/raw +kubectl apply --filename https://raw.githubusercontent.com/tektoncd/catalog/main/task/ansible-runner/0.2/ansible-runner.yaml ``` 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.5/raw \ +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.5/git-clone.yaml \ -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 8e3bbc4964..827a855f27 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://api.hub.tekton.dev/v1/resource/tekton/task/ansible-tower-cli/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ansible-tower-cli/0.1/ansible-tower-cli.yaml ``` ## Parameters diff --git a/task/argocd-task-connect-repo/0.1/README.md b/task/argocd-task-connect-repo/0.1/README.md index f0f1c73f2c..f7746b58f5 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://api.hub.tekton.dev/v1/resource/tekton/task/argocd-task-connect-repo/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/argocd-task-connect-repo/0.1/argocd-task-connect-repo.yaml ``` ## 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 72e2898be2..0e859e42da 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://api.hub.tekton.dev/v1/resource/tekton/task/argocd-task-sync-and-wait/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/argocd-task-sync-and-wait/0.1/argocd-task-sync-and-wait.yaml ``` ## 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 94b707beb4..81678dcc6e 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://api.hub.tekton.dev/v1/resource/tekton/task/argocd-task-sync-and-wait/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/argocd-task-sync-and-wait/0.2/argocd-task-sync-and-wait.yaml ``` ## Parameters diff --git a/task/asciidoctor/0.1/README.md b/task/asciidoctor/0.1/README.md index a7de67010e..bd3184c586 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://api.hub.tekton.dev/v1/resource/tekton/task/asciidoctor/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/asciidoctor/0.1/asciidoctor.yaml ``` ## Pre-requisite Install git-clone task from catalog ``` -https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.3/raw +https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.3/git-clone.yaml ``` ## Workspaces diff --git a/task/aws-cli/0.1/README.md b/task/aws-cli/0.1/README.md index 85c71689bb..b3ee1f0554 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://api.hub.tekton.dev/v1/resource/tekton/task/aws-cli/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/aws-cli/0.1/aws-cli.yaml ``` ## Parameters diff --git a/task/aws-cli/0.2/README.md b/task/aws-cli/0.2/README.md index 68ecc9113a..ba92bc8711 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://api.hub.tekton.dev/v1/resource/tekton/task/aws-cli/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/aws-cli/0.2/aws-cli.yaml ``` ## Parameters diff --git a/task/aws-ecr-login/0.1/README.md b/task/aws-ecr-login/0.1/README.md index ff95e819e5..c61812ce83 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://api.hub.tekton.dev/v1/resource/tekton/task/aws-ecr-login/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/aws-ecr-login/0.1/aws-ecr-login.yaml ``` ## Parameters diff --git a/task/az/0.1/README.md b/task/az/0.1/README.md index ffeb1a1e7c..49f0c57520 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://api.hub.tekton.dev/v1/resource/tekton/az/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/az/0.1/az.yaml ``` ## Parameters diff --git a/task/black/0.1/README.md b/task/black/0.1/README.md index 6d4f6fac5c..b24f140aa3 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://api.hub.tekton.dev/v1/resource/tekton/task/black/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/black/0.1/black.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml ``` 2. Create the PVC diff --git a/task/black/0.2/README.md b/task/black/0.2/README.md index 60ea8caa9c..3be1902ece 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://api.hub.tekton.dev/v1/resource/tekton/task/black/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/black/0.2/black.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml ``` 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 59d25922fb..dde1275d27 100644 --- a/task/blue-green-deploy/0.1/README.md +++ b/task/blue-green-deploy/0.1/README.md @@ -8,7 +8,7 @@ The following task can help you to deploy an application using the Blue-Green de ## Installing the Task ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/blue-green-deploy/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/blue-green-deploy/0.1/blue-green-deploy.yaml ``` ## Installing the ClusterRoleBinding diff --git a/task/blue-green-deploy/0.2/README.md b/task/blue-green-deploy/0.2/README.md index 98cf3c7286..3784b00be5 100644 --- a/task/blue-green-deploy/0.2/README.md +++ b/task/blue-green-deploy/0.2/README.md @@ -8,7 +8,7 @@ The following task can help you to deploy an application using the Blue-Green de ## Installing the Task ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/blue-green-deploy/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/blue-green-deploy/0.2/blue-green-deploy.yaml ``` ## Installing the ClusterRoleBinding diff --git a/task/buildah-manifest-create/0.1/README.md b/task/buildah-manifest-create/0.1/README.md index 1468b8dc99..9353a1cbf0 100644 --- a/task/buildah-manifest-create/0.1/README.md +++ b/task/buildah-manifest-create/0.1/README.md @@ -5,7 +5,7 @@ This Task creates a manifest list (also known as an image index) from pre-built ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildah-manifest-create/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah-manifest-create/0.1/buildah-manifest-create.yaml ``` ## Parameters diff --git a/task/buildah-manifest-push/0.1/README.md b/task/buildah-manifest-push/0.1/README.md index e645905638..6eb62e6ab2 100644 --- a/task/buildah-manifest-push/0.1/README.md +++ b/task/buildah-manifest-push/0.1/README.md @@ -5,7 +5,7 @@ This Task pushes a locally created manifest list to a container registry using [ ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildah-manifest-push/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah-manifest-push/0.1/buildah-manifest-push.yaml ``` ## Parameters diff --git a/task/buildah/0.1/README.md b/task/buildah/0.1/README.md index 473d6f0295..d547350063 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://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.1/buildah.yaml ``` ## Parameters diff --git a/task/buildah/0.2/README.md b/task/buildah/0.2/README.md index 22c085eb86..634a24f3f7 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://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.2/buildah.yaml ``` ## Parameters diff --git a/task/buildah/0.3/README.md b/task/buildah/0.3/README.md index 618b0016b1..75295ce3b9 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://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.3/buildah.yaml ``` ## Parameters diff --git a/task/buildah/0.4/README.md b/task/buildah/0.4/README.md index 6e9c3040ac..7932f14675 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://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.4/buildah.yaml ``` ## Parameters diff --git a/task/buildah/0.5/README.md b/task/buildah/0.5/README.md index 407ee74bd9..b16459635e 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://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.5/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.5/buildah.yaml ``` ## Parameters diff --git a/task/buildah/0.6/README.md b/task/buildah/0.6/README.md index 060b0f469e..5db816a91c 100644 --- a/task/buildah/0.6/README.md +++ b/task/buildah/0.6/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://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.6/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.6/buildah.yaml ``` ## Parameters diff --git a/task/buildah/0.7/README.md b/task/buildah/0.7/README.md index 363e22e137..949bd51e67 100644 --- a/task/buildah/0.7/README.md +++ b/task/buildah/0.7/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://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.7/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.7/buildah.yaml ``` ## Parameters diff --git a/task/buildah/0.8/README.md b/task/buildah/0.8/README.md index aa5047c573..e400727a36 100644 --- a/task/buildah/0.8/README.md +++ b/task/buildah/0.8/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://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.8/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.8/buildah.yaml ``` ## Parameters diff --git a/task/buildah/0.9/README.md b/task/buildah/0.9/README.md index 4ac13c11dc..1737be3091 100644 --- a/task/buildah/0.9/README.md +++ b/task/buildah/0.9/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://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.9/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.9/buildah.yaml ``` ## Parameters diff --git a/task/buildkit-daemonless/0.1/README.md b/task/buildkit-daemonless/0.1/README.md index ef6c27b301..8b470bcef2 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://api.hub.tekton.dev/v1/resource/tekton/task/buildkit-daemonless/0.1/raw +$ kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildkit-daemonless/0.1/buildkit-daemonless.yaml 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 98d82139a8..3a88e0968a 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://api.hub.tekton.dev/v1/resource/tekton/task/buildpacks-phases/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildpacks-phases/0.1/buildpacks-phases.yaml ``` > **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 f318ff7a44..11343a671e 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://api.hub.tekton.dev/v1/resource/tekton/task/buildpacks/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildpacks/0.1/buildpacks.yaml ``` > **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 59745c7cd0..81fb647316 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://api.hub.tekton.dev/v1/resource/tekton/task/buildpacks/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildpacks/0.2/buildpacks.yaml ``` > **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 bf807fe57a..5ce818333b 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://api.hub.tekton.dev/v1/resource/tekton/task/check-make/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/check-make/0.1/check-make.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml ``` 2. Create the PVC diff --git a/task/codecov/0.1/README.md b/task/codecov/0.1/README.md index 37c23e7a8c..0b69e3c9f0 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://api.hub.tekton.dev/v1/resource/tekton/task/codecov/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/codecov/0.1/codecov.yaml ``` ## Parameters diff --git a/task/codecov/0.2/README.md b/task/codecov/0.2/README.md index 37c23e7a8c..0b69e3c9f0 100644 --- a/task/codecov/0.2/README.md +++ b/task/codecov/0.2/README.md @@ -5,7 +5,7 @@ Upload your code coverage to [codecov.io](https://codecov.io) ## Installing the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/codecov/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/codecov/0.1/codecov.yaml ``` ## Parameters diff --git a/task/conftest/0.1/README.md b/task/conftest/0.1/README.md index 05ec4c9740..bbd0c5b33c 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://api.hub.tekton.dev/v1/resource/tekton/task/conftest/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/conftest/0.1/conftest.yaml ``` ## Platforms diff --git a/task/conftest/0.2/README.md b/task/conftest/0.2/README.md index 071c533e5e..c20ef45853 100644 --- a/task/conftest/0.2/README.md +++ b/task/conftest/0.2/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://api.hub.tekton.dev/v1/resource/tekton/task/conftest/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/conftest/0.2/conftest.yaml ``` ## Platforms diff --git a/task/create-github-release/0.1/README.md b/task/create-github-release/0.1/README.md index 504ca0656a..02747edde1 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://api.hub.tekton.dev/v1/resource/tekton/task/create-github-release/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/create-github-release/0.1/create-github-release.yaml ``` ## Parameters diff --git a/task/create-gitlab-release/0.1/README.md b/task/create-gitlab-release/0.1/README.md index 248e4d52a7..e1e3082db6 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://api.hub.tekton.dev/v1/resource/tekton/task/create-gitlab-release/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/create-gitlab-release/0.1/create-gitlab-release.yaml ``` ## Parameters diff --git a/task/curl/0.1/README.md b/task/curl/0.1/README.md index 57fb5901ca..85a1f15aef 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://api.hub.tekton.dev/v1/resource/tekton/task/curl/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/curl/0.1/curl.yaml ``` ## Parameters diff --git a/task/datree/0.1/README.md b/task/datree/0.1/README.md index c60b89c7a6..719ef65fdf 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://api.hub.tekton.dev/v1/resource/tekton/task/datree/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/datree/0.1/datree.yaml ``` ## Parameters diff --git a/task/docker-build/0.1/README.md b/task/docker-build/0.1/README.md index a19455991c..861a282116 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://api.hub.tekton.dev/v1/resource/tekton/task/docker-build/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/docker-build/0.1/docker-build.yaml ``` ### Parameters diff --git a/task/dockerslim-build/0.1/README.md b/task/dockerslim-build/0.1/README.md index c92f0976df..b8e53230a0 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://api.hub.tekton.dev/v1/resource/tekton/task/dockerslim-build/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/dockerslim-build/0.1/dockerslim-build.yaml ``` ### Parameters diff --git a/task/flake8/0.1/README.md b/task/flake8/0.1/README.md index c66630a19c..ce0827406c 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://api.hub.tekton.dev/v1/resource/tekton/task/flake8/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/flake8/0.1/flake8.yaml ``` ## Parameters diff --git a/task/gcloud/0.1/README.md b/task/gcloud/0.1/README.md index 2c13bad940..3aea32c1bb 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://api.hub.tekton.dev/v1/resource/tekton/task/gcloud/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gcloud/0.1/gcloud.yaml ``` ## Parameters diff --git a/task/gcloud/0.2/README.md b/task/gcloud/0.2/README.md index 7ef3b493cd..b0e051ccaf 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://api.hub.tekton.dev/v1/resource/tekton/task/gcloud/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gcloud/0.2/gcloud.yaml ``` ## Parameters diff --git a/task/gcloud/0.3/README.md b/task/gcloud/0.3/README.md index 1594071d17..9d2552602f 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://api.hub.tekton.dev/v1/resource/tekton/task/gcloud/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gcloud/0.3/gcloud.yaml ``` ## Parameters diff --git a/task/generate-build-id/0.1/README.md b/task/generate-build-id/0.1/README.md index 9f83946cac..bedfc8a600 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://api.hub.tekton.dev/v1/resource/tekton/task/generate-build-id/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/generate-build-id/0.1/generate-build-id.yaml ``` ## Parameters diff --git a/task/git-version/0.1/README.md b/task/git-version/0.1/README.md index 155cde0bb8..eb0bf879ff 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://api.hub.tekton.dev/v1/resource/tekton/task/git-version/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-version/0.1/git-version.yaml ``` ## Workspaces diff --git a/task/gitea-set-status/0.1/README.md b/task/gitea-set-status/0.1/README.md index a2d737f301..56f10e489a 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://api.hub.tekton.dev/v1/resource/tekton/task/gitea-set-status/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gitea-set-status/0.1/gitea-set-status.yaml ``` ### Parameters diff --git a/task/github-add-comment/0.1/README.md b/task/github-add-comment/0.1/README.md index f34a48e944..51811882ea 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://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.1/github-add-comment.yaml ``` ### Parameters diff --git a/task/github-add-comment/0.2/README.md b/task/github-add-comment/0.2/README.md index 3c8c051315..c0236e3aba 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://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.2/github-add-comment.yaml ``` ## Secrets diff --git a/task/github-add-comment/0.3/README.md b/task/github-add-comment/0.3/README.md index bb50d9e4f4..46b73d2e78 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://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.3/github-add-comment.yaml ``` ## Secrets diff --git a/task/github-add-comment/0.4/README.md b/task/github-add-comment/0.4/README.md index 7102edb804..e539ee5d12 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://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.4/github-add-comment.yaml ``` ## Secrets diff --git a/task/github-add-comment/0.5/README.md b/task/github-add-comment/0.5/README.md index 80648663c7..a8eaf3ce68 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://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.5/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.5/github-add-comment.yaml ``` ## Secrets diff --git a/task/github-add-comment/0.6/README.md b/task/github-add-comment/0.6/README.md index 07145e64ab..f9e029f70f 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://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.6/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.6/github-add-comment.yaml ``` ## Secrets diff --git a/task/github-add-comment/0.7/README.md b/task/github-add-comment/0.7/README.md index f3951b9ee3..d0a2f1f51f 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://api.hub.tekton.dev/v1/resource/tekton/task/github-add-comment/0.7/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-comment/0.7/github-add-comment.yaml ``` ## Secrets diff --git a/task/github-add-gist/0.1/README.md b/task/github-add-gist/0.1/README.md index 9d90891167..1ebc4f34ae 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://api.hub.tekton.dev/v1/resource/tekton/task/github-add-gist/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-gist/0.1/github-add-gist.yaml ``` ## Secrets diff --git a/task/github-add-gist/0.2/README.md b/task/github-add-gist/0.2/README.md index 7cb21d8d54..7b4a588249 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://api.hub.tekton.dev/v1/resource/tekton/task/github-add-gist/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-gist/0.2/github-add-gist.yaml ``` ## Secrets diff --git a/task/github-add-labels/0.1/README.md b/task/github-add-labels/0.1/README.md index 149b89b670..f5f43e5b30 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://api.hub.tekton.dev/v1/resource/tekton/task/github-add-labels/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-add-labels/0.1/github-add-labels.yaml ``` ## Parameters diff --git a/task/github-app-token/0.1/README.md b/task/github-app-token/0.1/README.md index cec296e583..8bc1c3c456 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://api.hub.tekton.dev/v1/resource/tekton/task/github-app-token/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-app-token/0.1/github-app-token.yaml ``` ## Platforms diff --git a/task/github-app-token/0.2/README.md b/task/github-app-token/0.2/README.md index 8abd068840..4833a198d0 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://api.hub.tekton.dev/v1/resource/tekton/task/github-app-token/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-app-token/0.2/github-app-token.yaml ``` ## Platforms diff --git a/task/github-close-issue/0.1/README.md b/task/github-close-issue/0.1/README.md index 6c3e5bce43..44a8337e1c 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://api.hub.tekton.dev/v1/resource/tekton/task/github-close-issue/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-close-issue/0.1/github-close-issue.yaml ``` ## Secrets diff --git a/task/github-close-issue/0.2/README.md b/task/github-close-issue/0.2/README.md index f7de04c2ae..574110708a 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://api.hub.tekton.dev/v1/resource/tekton/task/github-close-issue/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-close-issue/0.2/github-close-issue.yaml ``` ## Secrets diff --git a/task/github-create-deployment-status/0.1/README.md b/task/github-create-deployment-status/0.1/README.md index fefc256614..a7b2438941 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://api.hub.tekton.dev/v1/resource/tekton/task/github-create-deployment-status/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-create-deployment-status/0.1/github-create-deployment-status.yaml ``` ### Secrets diff --git a/task/github-create-deployment/0.1/README.md b/task/github-create-deployment/0.1/README.md index c3d543b156..6e9a64f4e3 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://api.hub.tekton.dev/v1/resource/tekton/task/github-create-deployment/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-create-deployment/0.1/github-create-deployment.yaml ``` ### Secrets diff --git a/task/github-create-deployment/0.2/README.md b/task/github-create-deployment/0.2/README.md index c7c7cd886c..3c5af305f8 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://api.hub.tekton.dev/v1/resource/tekton/task/github-create-deployment/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-create-deployment/0.2/github-create-deployment.yaml ``` ### Secrets diff --git a/task/github-open-pr/0.1/README.md b/task/github-open-pr/0.1/README.md index 3f510ec8a0..45ed9342bd 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://api.hub.tekton.dev/v1/resource/tekton/task/github-open-pr/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-open-pr/0.1/github-open-pr.yaml ``` ### Parameters diff --git a/task/github-open-pr/0.2/README.md b/task/github-open-pr/0.2/README.md index 0ba85f93ca..116314246b 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://api.hub.tekton.dev/v1/resource/tekton/task/github-open-pr/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-open-pr/0.2/github-open-pr.yaml ``` ### Parameters diff --git a/task/github-request-reviewers/0.1/README.md b/task/github-request-reviewers/0.1/README.md index a96b8ed66c..8a76a87589 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://api.hub.tekton.dev/v1/resource/tekton/task/github-request-reviewers/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-request-reviewers/0.1/github-request-reviewers.yaml ``` ## Secrets diff --git a/task/github-set-status/0.1/README.md b/task/github-set-status/0.1/README.md index e083d45108..056b0c0d71 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://api.hub.tekton.dev/v1/resource/tekton/task/github-set-status/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-set-status/0.1/github-set-status.yaml ``` ### Parameters diff --git a/task/github-set-status/0.2/README.md b/task/github-set-status/0.2/README.md index 3b2f9651a5..d41d70529a 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://api.hub.tekton.dev/v1/resource/tekton/task/github-set-status/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-set-status/0.2/github-set-status.yaml ``` ### Parameters diff --git a/task/github-set-status/0.3/README.md b/task/github-set-status/0.3/README.md index d17143d5fa..1b32ceaab5 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://api.hub.tekton.dev/v1/resource/tekton/task/github-set-status/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-set-status/0.3/github-set-status.yaml ``` ### Parameters diff --git a/task/github-set-status/0.4/README.md b/task/github-set-status/0.4/README.md index dc9af8636c..65f277cfaf 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://api.hub.tekton.dev/v1/resource/tekton/task/github-set-status/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/github-set-status/0.3/github-set-status.yaml ``` ### Parameters diff --git a/task/gitlab-add-label/0.1/README.md b/task/gitlab-add-label/0.1/README.md index f7c1d8ca98..0fcafee52d 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://api.hub.tekton.dev/v1/resource/tekton/task/gitlab-add-label/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gitlab-add-label/0.1/gitlab-add-label.yaml ``` ### Parameters diff --git a/task/gitlab-set-status/0.1/README.md b/task/gitlab-set-status/0.1/README.md index 83660a4308..e4c33e18da 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://api.hub.tekton.dev/v1/resource/tekton/task/gitlab-set-status/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gitlab-set-status/0.1/gitlab-set-status.yaml ``` ### Parameters diff --git a/task/gitlab-set-status/0.2/README.md b/task/gitlab-set-status/0.2/README.md index babfa4b751..fe03f07741 100644 --- a/task/gitlab-set-status/0.2/README.md +++ b/task/gitlab-set-status/0.2/README.md @@ -14,7 +14,7 @@ informations about the CI statuses or a direct link to the full log. ### Install the Task ```shell -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gitlab-set-status/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gitlab-set-status/0.2/gitlab-set-status.yaml ``` ### Parameters diff --git a/task/gitleaks/0.1/README.md b/task/gitleaks/0.1/README.md index 4054be7ac9..d9f369b4da 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://api.hub.tekton.dev/v1/resource/tekton/task/gitleaks/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gitleaks/0.1/gitleaks.yaml ``` ## Pre-requisite Install git-clone task from catalog ``` -https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.3/raw +https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.3/git-clone.yaml ``` diff --git a/task/gke-deploy/0.1/README.md b/task/gke-deploy/0.1/README.md index 4b777e07be..d436cc4850 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://api.hub.tekton.dev/v1/resource/tekton/task/gke-deploy/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gke-deploy/0.1/gke-deploy.yaml ``` ## 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 297b47a822..519e388d14 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://api.hub.tekton.dev/v1/resource/tekton/gke-deploy/raw + kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gke-deploy/ ``` 5. Create the `PipelineRun` config to run your Pipeline. diff --git a/task/gogit/0.1/README.md b/task/gogit/0.1/README.md index 20b302b2a3..0bd1873089 100644 --- a/task/gogit/0.1/README.md +++ b/task/gogit/0.1/README.md @@ -9,7 +9,7 @@ See more details from https://github.com/linuxsuren/gogit ## Install the task ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gogit/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gogit/0.1/gogit.yaml ``` ## Platforms diff --git a/task/golang-build/0.1/README.md b/task/golang-build/0.1/README.md index 5f78a57597..680d04007d 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://api.hub.tekton.dev/v1/resource/tekton/task/golang-build/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-build/0.1/golang-build.yaml ``` diff --git a/task/golang-build/0.2/README.md b/task/golang-build/0.2/README.md index 52178a7b2c..7e35d6e2eb 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://api.hub.tekton.dev/v1/resource/tekton/task/golang-build/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-build/0.2/golang-build.yaml ``` diff --git a/task/golang-build/0.3/README.md b/task/golang-build/0.3/README.md index 6e037a8afb..213afa92c6 100644 --- a/task/golang-build/0.3/README.md +++ b/task/golang-build/0.3/README.md @@ -12,7 +12,7 @@ This Task is Golang task to build Go projects. ## Install the task ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/golang-build/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-build/0.3/golang-build.yaml ``` diff --git a/task/golang-fuzz/0.1/README.md b/task/golang-fuzz/0.1/README.md index 62d7d23d93..feb4e63571 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://api.hub.tekton.dev/v1/resource/tekton/task/golang-test/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-test/0.1/golang-test.yaml ``` ### Parameters diff --git a/task/golang-test/0.1/README.md b/task/golang-test/0.1/README.md index de28cc6c0f..4fc10be787 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://api.hub.tekton.dev/v1/resource/tekton/task/golang-test/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-test/0.1/golang-test.yaml ``` ### Parameters diff --git a/task/golang-test/0.2/README.md b/task/golang-test/0.2/README.md index 6d5b476812..9650120289 100644 --- a/task/golang-test/0.2/README.md +++ b/task/golang-test/0.2/README.md @@ -12,7 +12,7 @@ This task is a Golang task to test Go projects. ## Install the task ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/golang-test/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golang-test/0.2/golang-test.yaml ``` ### Parameters diff --git a/task/golangci-lint/0.1/README.md b/task/golangci-lint/0.1/README.md index 308aa89dce..c048b975b2 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://api.hub.tekton.dev/v1/resource/tekton/task/golangci-lint/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golangci-lint/0.1/golangci-lint.yaml ``` diff --git a/task/golangci-lint/0.2/README.md b/task/golangci-lint/0.2/README.md index 9d7f0028bb..a05221f5a7 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://api.hub.tekton.dev/v1/resource/tekton/task/golangci-lint/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/golangci-lint/0.2/golangci-lint.yaml ``` diff --git a/task/goreleaser/0.1/README.md b/task/goreleaser/0.1/README.md index 2d4f5fec68..45b64b7da9 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://api.hub.tekton.dev/v1/resource/tekton/task/goreleaser/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/goreleaser/0.1/goreleaser.yaml ``` ## Parameters diff --git a/task/goreleaser/0.2/README.md b/task/goreleaser/0.2/README.md index bc3221ea09..7a7c38a26d 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://api.hub.tekton.dev/v1/resource/tekton/task/goreleaser/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/goreleaser/0.2/goreleaser.yaml ``` ## Parameters diff --git a/task/gradle/0.1/README.md b/task/gradle/0.1/README.md index 7b51b0a343..fcf424ddd8 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://api.hub.tekton.dev/v1/resource/tekton/task/gradle/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gradle/0.1/gradle.yaml ``` ## Parameters diff --git a/task/gradle/0.2/README.md b/task/gradle/0.2/README.md index 80a3b123d1..9dd0ee9c11 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://api.hub.tekton.dev/v1/resource/tekton/task/gradle/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gradle/0.2/gradle.yaml ``` ## Parameters diff --git a/task/gradle/0.3/README.md b/task/gradle/0.3/README.md index ae7f7e5a76..94f31ca35e 100644 --- a/task/gradle/0.3/README.md +++ b/task/gradle/0.3/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://api.hub.tekton.dev/v1/resource/tekton/task/gradle/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gradle/0.3/gradle.yaml ``` ## Parameters diff --git a/task/gradle/0.4/README.md b/task/gradle/0.4/README.md index dc201e1a89..eb4e3deb64 100644 --- a/task/gradle/0.4/README.md +++ b/task/gradle/0.4/README.md @@ -6,7 +6,7 @@ If the project contains a gradle wrapper, the wrapper will be invoked instead of ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/gradle/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/gradle/0.4/gradle.yaml ``` ## Parameters diff --git a/task/hadolint/0.1/README.md b/task/hadolint/0.1/README.md index cceb55ec26..7875343b00 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://api.hub.tekton.dev/v1/resource/tekton/task/hadolint/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/hadolint/0.1/hadolint.yaml ``` ## Pre-requisite Install git-clone task from catalog ``` -https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.3/raw +https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.3/git-clone.yaml ``` ## Workspaces diff --git a/task/helm-conftest/0.1/README.md b/task/helm-conftest/0.1/README.md index 2255a2ab40..fae8193c92 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://api.hub.tekton.dev/v1/resource/tekton/task/helm-conftest/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-conftest/0.1/helm-conftest.yaml ``` ## 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 12e74eeee1..e9be13516b 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://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-repo/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-repo/0.1/helm-upgrade-from-repo.yaml ``` #### Parameters diff --git a/task/helm-upgrade-from-repo/0.2/README.md b/task/helm-upgrade-from-repo/0.2/README.md index 3096f7dd26..df327bce94 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://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-repo/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-repo/0.2/helm-upgrade-from-repo.yaml ``` #### Parameters diff --git a/task/helm-upgrade-from-repo/0.3/README.md b/task/helm-upgrade-from-repo/0.3/README.md index 22e914d3c1..91efd3ec54 100644 --- a/task/helm-upgrade-from-repo/0.3/README.md +++ b/task/helm-upgrade-from-repo/0.3/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://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-repo/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-repo/0.3/helm-upgrade-from-repo.yaml ``` #### Parameters diff --git a/task/helm-upgrade-from-source/0.1/README.md b/task/helm-upgrade-from-source/0.1/README.md index 4ad69cab42..5f60a80594 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://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-source/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-source/0.1/helm-upgrade-from-source.yaml ``` #### Parameters diff --git a/task/helm-upgrade-from-source/0.2/README.md b/task/helm-upgrade-from-source/0.2/README.md index 15bc67c87f..b48df35cfa 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://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-source/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-source/0.2/helm-upgrade-from-source.yaml ``` #### Parameters diff --git a/task/helm-upgrade-from-source/0.3/README.md b/task/helm-upgrade-from-source/0.3/README.md index ac4f2475af..3764f15b0b 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://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-source/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-source/0.3/helm-upgrade-from-source.yaml ``` #### Parameters diff --git a/task/helm-upgrade-from-source/0.4/README.md b/task/helm-upgrade-from-source/0.4/README.md index ac4f2475af..3764f15b0b 100644 --- a/task/helm-upgrade-from-source/0.4/README.md +++ b/task/helm-upgrade-from-source/0.4/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://api.hub.tekton.dev/v1/resource/tekton/task/helm-upgrade-from-source/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/helm-upgrade-from-source/0.3/helm-upgrade-from-source.yaml ``` #### Parameters diff --git a/task/ibmcloud/0.1/README.md b/task/ibmcloud/0.1/README.md index 59f63cb475..031e6b1d92 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://api.hub.tekton.dev/v1/resource/tekton/task/ibmcloud/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ibmcloud/0.1/ibmcloud.yaml ``` ## Parameters diff --git a/task/istio-canary-release/0.1/README.md b/task/istio-canary-release/0.1/README.md index 4fe44aa0cc..63e2e9a0a1 100644 --- a/task/istio-canary-release/0.1/README.md +++ b/task/istio-canary-release/0.1/README.md @@ -13,13 +13,13 @@ 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://api.hub.tekton.dev/v1/resource/tekton/task/kubernetes-actions/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubernetes-actions/0.1/kubernetes-actions.yaml ``` 2. For Istio Services ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/istio-canary-release/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/istio-canary-release/0.1/istio-canary-release.yaml ``` ## Installing the ClusterRoleBinding diff --git a/task/jenkins/0.1/README.md b/task/jenkins/0.1/README.md index d71498d6b4..8a8b546ac8 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://api.hub.tekton.dev/v1/resource/tekton/task/jenkins/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jenkins/0.1/jenkins.yaml ``` ## Parameters diff --git a/task/jib-gradle/0.1/README.md b/task/jib-gradle/0.1/README.md index 181317c433..687b871c76 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://api.hub.tekton.dev/v1/resource/tekton/task/jib-gradle/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-gradle/0.1/jib-gradle.yaml ``` diff --git a/task/jib-gradle/0.2/README.md b/task/jib-gradle/0.2/README.md index 640f0eadc9..d9910c6160 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://api.hub.tekton.dev/v1/resource/tekton/task/jib-gradle/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-gradle/0.2/jib-gradle.yaml ``` ## Parameters diff --git a/task/jib-gradle/0.3/README.md b/task/jib-gradle/0.3/README.md index 313e21c450..86eb2c217e 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://api.hub.tekton.dev/v1/resource/tekton/task/jib-gradle/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-gradle/0.3/jib-gradle.yaml ``` ## Parameters diff --git a/task/jib-gradle/0.4/README.md b/task/jib-gradle/0.4/README.md index e2c8847cab..2018a51adb 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://api.hub.tekton.dev/v1/resource/tekton/task/jib-gradle/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-gradle/0.4/jib-gradle.yaml ``` ## Parameters diff --git a/task/jib-maven/0.1/README.md b/task/jib-maven/0.1/README.md index 5b3ae4e899..7deaaf74d2 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://api.hub.tekton.dev/v1/resource/tekton/task/jib-maven/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-maven/0.1/jib-maven.yaml ``` ## Parameters diff --git a/task/jib-maven/0.2/README.md b/task/jib-maven/0.2/README.md index b9370800f0..6b5fafa5d8 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://api.hub.tekton.dev/v1/resource/tekton/task/jib-maven/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-maven/0.2/jib-maven.yaml ``` ## Parameters diff --git a/task/jib-maven/0.3/README.md b/task/jib-maven/0.3/README.md index 7c2c89403a..6c6b26e93e 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://api.hub.tekton.dev/v1/resource/tekton/task/jib-maven/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-maven/0.3/jib-maven.yaml ``` ## Parameters diff --git a/task/jib-maven/0.4/README.md b/task/jib-maven/0.4/README.md index 601f0dd9bb..910041905b 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://api.hub.tekton.dev/v1/resource/tekton/task/jib-maven/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-maven/0.4/jib-maven.yaml ``` ## Parameters diff --git a/task/jib-maven/0.5/README.md b/task/jib-maven/0.5/README.md index 53d285aa7c..ad68dd451c 100644 --- a/task/jib-maven/0.5/README.md +++ b/task/jib-maven/0.5/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://api.hub.tekton.dev/v1/resource/tekton/task/jib-maven/0.5/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jib-maven/0.5/jib-maven.yaml ``` ## Parameters diff --git a/task/jira-get-ticket-status/0.1/README.md b/task/jira-get-ticket-status/0.1/README.md index e4a6f009c4..d2d85ea903 100644 --- a/task/jira-get-ticket-status/0.1/README.md +++ b/task/jira-get-ticket-status/0.1/README.md @@ -5,7 +5,7 @@ This task helps you to get the current status of a Jira ticket. ## Install the Task ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jira-get-ticket-status/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jira-get-ticket-status/0.1/jira-get-ticket-status.yaml ``` ## Parameters diff --git a/task/jq/0.1/README.md b/task/jq/0.1/README.md index 149173e0dc..20ec407322 100644 --- a/task/jq/0.1/README.md +++ b/task/jq/0.1/README.md @@ -5,7 +5,7 @@ The following task is used to execute a given JQ script and expose its result. I ## Installing the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jq/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jq/0.1/jq.yaml ``` ## Parameters diff --git a/task/jumpstarter-get-lease/0.1/README.md b/task/jumpstarter-get-lease/0.1/README.md index 060cee0847..aec3999492 100644 --- a/task/jumpstarter-get-lease/0.1/README.md +++ b/task/jumpstarter-get-lease/0.1/README.md @@ -5,7 +5,7 @@ This Tekton task acquires a lease from the [Jumpstarter](https://github.com/jump ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jumpstarter-get-lease/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jumpstarter-get-lease/0.1/jumpstarter-get-lease.yaml ``` ## Parameters diff --git a/task/jumpstarter-release-lease/0.1/README.md b/task/jumpstarter-release-lease/0.1/README.md index cce511e000..17a1b717f5 100644 --- a/task/jumpstarter-release-lease/0.1/README.md +++ b/task/jumpstarter-release-lease/0.1/README.md @@ -5,7 +5,7 @@ This Tekton task releases an existing lease in the [Jumpstarter](https://github. ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jumpstarter-release-lease/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jumpstarter-release-lease/0.1/jumpstarter-release-lease.yaml ``` ## Parameters diff --git a/task/jumpstarter-run-cmd/0.1/README.md b/task/jumpstarter-run-cmd/0.1/README.md index fbdb2ea583..27769f38b1 100644 --- a/task/jumpstarter-run-cmd/0.1/README.md +++ b/task/jumpstarter-run-cmd/0.1/README.md @@ -5,7 +5,7 @@ This Tekton task runs one or more commands on a remote device using the [Jumpsta ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/jumpstarter-run-command/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/jumpstarter-run-command/0.1/jumpstarter-run-command.yaml ``` ## Parameters diff --git a/task/kamel-run/0.1/README.md b/task/kamel-run/0.1/README.md index e411e9ebaa..e3577a77e5 100644 --- a/task/kamel-run/0.1/README.md +++ b/task/kamel-run/0.1/README.md @@ -7,7 +7,7 @@ If you have installed Camel K operator, you can configure the `kamel-run` task t ## Install the Task ```shell -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kamel-run/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kamel-run/0.1/kamel-run.yaml ``` ## Parameters diff --git a/task/kaniko/0.1/README.md b/task/kaniko/0.1/README.md index 69714ba4a7..13026989db 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://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.1/kaniko.yaml ``` ## Parameters diff --git a/task/kaniko/0.2/README.md b/task/kaniko/0.2/README.md index cf3f6c6f8d..74bd11a611 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://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.2/kaniko.yaml ``` ## Parameters diff --git a/task/kaniko/0.3/README.md b/task/kaniko/0.3/README.md index d35561686e..5c8738bfbe 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://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.3/kaniko.yaml ``` ## Parameters diff --git a/task/kaniko/0.4/README.md b/task/kaniko/0.4/README.md index 6c6a20f7ca..9b308d89fb 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://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.4/kaniko.yaml ``` ## Parameters diff --git a/task/kaniko/0.5/README.md b/task/kaniko/0.5/README.md index 3f99347e90..dd421a0363 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://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.5/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.5/kaniko.yaml ``` ## Parameters diff --git a/task/kaniko/0.6/README.md b/task/kaniko/0.6/README.md index 9c9033b4e3..2998a4d7e9 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://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.6/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.6/kaniko.yaml ``` ## Parameters diff --git a/task/kaniko/0.7/README.md b/task/kaniko/0.7/README.md index ca189cb559..f0c1bd3379 100644 --- a/task/kaniko/0.7/README.md +++ b/task/kaniko/0.7/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://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.7/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.7/kaniko.yaml ``` ## Parameters diff --git a/task/kn-apply/0.1/README.md b/task/kn-apply/0.1/README.md index bf855e2cab..45f77b9f67 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://api.hub.tekton.dev/v1/resource/tekton/task/kn-apply/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn-apply/0.1/kn-apply.yaml ``` ## Parameters diff --git a/task/kn-apply/0.2/README.md b/task/kn-apply/0.2/README.md index a8b91ddb06..74a2ae327f 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://api.hub.tekton.dev/v1/resource/tekton/task/kn-apply/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn-apply/0.2/kn-apply.yaml ``` ## Parameters diff --git a/task/kn/0.1/README.md b/task/kn/0.1/README.md index e2e34e79c8..bf7c56a1e6 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://api.hub.tekton.dev/v1/resource/tekton/task/kn/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn/0.1/kn.yaml ``` ## Parameters diff --git a/task/kn/0.2/README.md b/task/kn/0.2/README.md index 0d30a02724..c3d6dd0ac2 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://api.hub.tekton.dev/v1/resource/tekton/task/kn/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn/0.2/kn.yaml ``` ## Parameters diff --git a/task/kn/0.2/knative-dockerfile-deploy/README.md b/task/kn/0.2/knative-dockerfile-deploy/README.md index 079be471ef..a21ca031a6 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://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.4/buildah.yaml +https://raw.githubusercontent.com/tektoncd/catalog/main/task/buildah/0.4/buildah.yaml ``` 5 - Install the kn task from the tektoncd/catalog ```bash -https://api.hub.tekton.dev/v1/resource/tekton/task/kn/0.2/kn.yaml +https://raw.githubusercontent.com/tektoncd/catalog/main/task/kn/0.2/kn.yaml ``` 5 - Install the git-clone task from the tektoncd/catalog ```bash -https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.8/git-clone.yaml +https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.8/git-clone.yaml ``` ## Pipelines: diff --git a/task/ko/0.1/README.md b/task/ko/0.1/README.md index 494327006d..4c32f2e97b 100644 --- a/task/ko/0.1/README.md +++ b/task/ko/0.1/README.md @@ -6,7 +6,7 @@ This Task builds source into a container image using [ko](https://ko.build/). ## Install the Task ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/ko/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ko/0.1/ko.yaml ``` ## Parameters diff --git a/task/kube-linter/0.1/README.md b/task/kube-linter/0.1/README.md index 4070ff23f4..1e2b8f049c 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://api.hub.tekton.dev/v1/resource/tekton/task/kube-linter/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kube-linter/0.1/kube-linter.yaml ``` ## Pre-requisite Install git-clone task from catalog ``` -https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.3/raw +https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.3/git-clone.yaml ``` ## Workspaces diff --git a/task/kubeconfig-creator/0.1/README.md b/task/kubeconfig-creator/0.1/README.md index cb0096e2c4..b5eeb3ae43 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://api.hub.tekton.dev/v1/resource/tekton/task/kubeconfig-creator/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubeconfig-creator/0.1/kubeconfig-creator.yaml ``` ## Workspace diff --git a/task/kubeconfig-creator/0.2/README.md b/task/kubeconfig-creator/0.2/README.md index cb0096e2c4..b5eeb3ae43 100644 --- a/task/kubeconfig-creator/0.2/README.md +++ b/task/kubeconfig-creator/0.2/README.md @@ -23,7 +23,7 @@ This task provides users variety of ways to authenticate: ## Install the Task ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kubeconfig-creator/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubeconfig-creator/0.1/kubeconfig-creator.yaml ``` ## Workspace diff --git a/task/kubectl-deploy-pod/0.1/README.md b/task/kubectl-deploy-pod/0.1/README.md index 64696a649c..290b24c77e 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://api.hub.tekton.dev/v1/resource/tekton/task/kubectl-deploy-pod/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubectl-deploy-pod/0.1/kubectl-deploy-pod.yaml ``` ## Install ClusterRole diff --git a/task/kubernetes-actions/0.1/README.md b/task/kubernetes-actions/0.1/README.md index 6922efeac9..a8ca17c9bb 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://api.hub.tekton.dev/v1/resource/tekton/task/kubernetes-actions/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubernetes-actions/0.1/kubernetes-actions.yaml ``` ## Inputs diff --git a/task/kubernetes-actions/0.2/README.md b/task/kubernetes-actions/0.2/README.md index 207b8f28b7..f194c33b61 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://api.hub.tekton.dev/v1/resource/tekton/task/kubernetes-actions/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubernetes-actions/0.2/kubernetes-actions.yaml ``` ## Inputs diff --git a/task/kubeval/0.1/README.md b/task/kubeval/0.1/README.md index b3afe39d59..d36d626786 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://api.hub.tekton.dev/v1/resource/tekton/task/kubeval/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kubeval/0.1/kubeval.yaml ``` ## Platforms diff --git a/task/makisu/0.1/README.md b/task/makisu/0.1/README.md index 71506eba02..58f0fa35c5 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://api.hub.tekton.dev/v1/resource/tekton/task/makisu/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/makisu/0.1/makisu.yaml ``` ## Parameters diff --git a/task/markdown-lint/0.1/README.md b/task/markdown-lint/0.1/README.md index db174a03c5..260b7f124c 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://api.hub.tekton.dev/v1/resource/tekton/task/markdown-lint/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/markdown-lint/0.1/markdown-lint.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml ``` 2. Create the PVC diff --git a/task/maven/0.1/README.md b/task/maven/0.1/README.md index 4ba4b6a152..f4bbcf634c 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://api.hub.tekton.dev/v1/resource/tekton/task/maven/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/maven/0.1/maven.yaml ``` ## Parameters diff --git a/task/maven/0.2/README.md b/task/maven/0.2/README.md index ebbbe57c7d..8a70f3cb32 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://api.hub.tekton.dev/v1/resource/tekton/task/maven/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/maven/0.2/maven.yaml ``` ## Parameters diff --git a/task/maven/0.3/README.md b/task/maven/0.3/README.md index bd0988589f..379d9da09a 100644 --- a/task/maven/0.3/README.md +++ b/task/maven/0.3/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://api.hub.tekton.dev/v1/resource/tekton/task/maven/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/maven/0.3/maven.yaml ``` ## Parameters diff --git a/task/maven/0.4/README.md b/task/maven/0.4/README.md index eb6ef4066e..b93c459fb4 100644 --- a/task/maven/0.4/README.md +++ b/task/maven/0.4/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://api.hub.tekton.dev/v1/resource/tekton/task/maven/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/maven/0.4/maven.yaml ``` ## Parameters diff --git a/task/mypy-lint/0.1/README.md b/task/mypy-lint/0.1/README.md index 23dda9897c..c5702b7606 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://api.hub.tekton.dev/v1/resource/tekton/task/mypy-lint/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/mypy-lint/0.1/mypy-lint.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml ``` 2. Create the PVC diff --git a/task/mypy-lint/0.2/README.md b/task/mypy-lint/0.2/README.md index f9c02550c3..53b063a8d4 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://api.hub.tekton.dev/v1/resource/tekton/task/mypy-lint/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/mypy-lint/0.2/mypy-lint.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml ``` 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 16aea5c751..6f831a7646 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://api.hub.tekton.dev/v1/resource/tekton/task/nexus-lifecycle-scan/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/nexus-lifecycle-scan/0.1/nexus-lifecycle-scan.yaml ``` #### Parameters diff --git a/task/npm/0.1/README.md b/task/npm/0.1/README.md index c74b09fb9a..77e9b31f72 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://api.hub.tekton.dev/v1/resource/tekton/task/npm/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/npm/0.1/npm.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.2/raw) task which will help to clone the repository. +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. 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 b788109760..0c4f3493bd 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://api.hub.tekton.dev/v1/resource/tekton/task/openshift-client-kubecfg/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-client-kubecfg/0.1/openshift-client-kubecfg.yaml ``` diff --git a/task/openshift-client-python/0.1/README.md b/task/openshift-client-python/0.1/README.md index d1894dde2f..f282423d5c 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://api.hub.tekton.dev/v1/resource/tekton/task/openshift-client-python/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-client-python/0.1/openshift-client-python.yaml ``` ## Parameters diff --git a/task/openshift-client/0.1/README.md b/task/openshift-client/0.1/README.md index 8e51b4b6ea..b5e8b86c6d 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://api.hub.tekton.dev/v1/resource/tekton/task/openshift-client/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-client/0.1/openshift-client.yaml ``` ## Parameters diff --git a/task/openshift-client/0.2/README.md b/task/openshift-client/0.2/README.md index 65138479f0..e401358221 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://api.hub.tekton.dev/v1/resource/tekton/task/openshift-client/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-client/0.2/openshift-client.yaml ``` ## Parameters diff --git a/task/openshift-install/0.1/README.md b/task/openshift-install/0.1/README.md index 09abacafef..42fa2f6ccd 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://api.hub.tekton.dev/v1/resource/tekton/task/openshift-install/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-install/0.1/openshift-install.yaml ``` ### **Parameters** diff --git a/task/openshift-uninstall/0.1/README.md b/task/openshift-uninstall/0.1/README.md index e715749477..160ffc0b8b 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://api.hub.tekton.dev/v1/resource/tekton/task/openshift-uninstall/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/openshift-uninstall/0.1/openshift-uninstall.yaml ``` ### **Workspaces** diff --git a/task/pluto/0.1/README.md b/task/pluto/0.1/README.md index 6ea32a59ab..87c1d6b09b 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://api.hub.tekton.dev/v1/resource/tekton/task/pluto/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pluto/0.1/pluto.yaml ``` ## Parameters diff --git a/task/powershell/0.1/README.md b/task/powershell/0.1/README.md index 4bda87ce3f..a4aade9cd6 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://api.hub.tekton.dev/v1/resource/tekton/task/powershell/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/powershell/0.1/powershell.yaml ``` ## Parameters diff --git a/task/pull-request/0.1/README.md b/task/pull-request/0.1/README.md index 72c5314dcb..99696bffdc 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://api.hub.tekton.dev/v1/resource/tekton/task/pull-request/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pull-request/0.1/pull-request.yaml ``` ## Configuring the Tasks diff --git a/task/pull-request/0.2/README.md b/task/pull-request/0.2/README.md index 72c5314dcb..99696bffdc 100644 --- a/task/pull-request/0.2/README.md +++ b/task/pull-request/0.2/README.md @@ -29,7 +29,7 @@ workspace. To install the Task: ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/pull-request/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pull-request/0.1/pull-request.yaml ``` ## Configuring the Tasks diff --git a/task/pylint/0.1/README.md b/task/pylint/0.1/README.md index bd804939b9..aecfb48cbb 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://api.hub.tekton.dev/v1/resource/tekton/task/pylint/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pylint/0.1/pylint.yaml ``` ## Parameters diff --git a/task/pylint/0.2/README.md b/task/pylint/0.2/README.md index b39bd6a919..f2875cf3c9 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://api.hub.tekton.dev/v1/resource/tekton/task/pylint/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pylint/0.2/pylint.yaml ``` ## Parameters diff --git a/task/pylint/0.3/README.md b/task/pylint/0.3/README.md index 0029227ed2..bd50af2ea5 100644 --- a/task/pylint/0.3/README.md +++ b/task/pylint/0.3/README.md @@ -11,7 +11,7 @@ The task provides linting based on [pylint](https://pypi.org/project/pylint/) fo ### Install the pylint task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/pylint/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pylint/0.3/pylint.yaml ``` ## Parameters diff --git a/task/pytest/0.1/README.md b/task/pytest/0.1/README.md index 36f8143b70..dc954d156e 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://api.hub.tekton.dev/v1/resource/tekton/task/pytest/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pytest/0.1/pytest.yaml ``` ## Parameters diff --git a/task/pytest/0.2/README.md b/task/pytest/0.2/README.md index 28680c3c5b..a8edb98646 100644 --- a/task/pytest/0.2/README.md +++ b/task/pytest/0.2/README.md @@ -14,7 +14,7 @@ The task provides test execution based on [pytest](https://pypi.org/project/pyte ### Install pytest ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/pytest/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/pytest/0.2/pytest.yaml ``` ## Parameters diff --git a/task/python-coverage/0.1/README.md b/task/python-coverage/0.1/README.md index 74c7200efc..975f891bb9 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://api.hub.tekton.dev/v1/resource/tekton/task/python-coverage/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/python-coverage/0.1/python-coverage.yaml ``` ## Parameters diff --git a/task/redhat-codeready-dependency-analysis/0.1/README.md b/task/redhat-codeready-dependency-analysis/0.1/README.md index d756b0c72a..504f74bfbd 100644 --- a/task/redhat-codeready-dependency-analysis/0.1/README.md +++ b/task/redhat-codeready-dependency-analysis/0.1/README.md @@ -1,6 +1,6 @@ # ⛔️ DEPRECATED -THIS TEKTON TASK IS NOW DEPRECATED. Please consider using the [redhat-dependency-analytics](https://hub.tekton.dev/tekton/task/redhat-dependency-analytics) Tekton Task instead. +THIS TEKTON TASK IS NOW DEPRECATED. Please consider using the [redhat-dependency-analytics](https://artifacthub.io/packages/tekton-task/tekton-catalog-tasks/redhat-dependency-analytics) Tekton Task instead. # `redhat-codeready-dependency-analysis` @@ -109,7 +109,7 @@ The link to detailed report will take users to a browser window having similar f ## Install the Task ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/redhat-codeready-dependency-analysis/0.1/raw -n +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/redhat-codeready-dependency-analysis/0.1/redhat-codeready-dependency-analysis.yaml -n ``` ## Platforms diff --git a/task/redhat-dependency-analytics/0.1/README.md b/task/redhat-dependency-analytics/0.1/README.md index e1685c7949..5985268bb0 100644 --- a/task/redhat-dependency-analytics/0.1/README.md +++ b/task/redhat-dependency-analytics/0.1/README.md @@ -138,7 +138,7 @@ An example PipelineRun and TaskRun are provided in the `samples` directory in or #### For PipelineRun Example: -1. Deploy the [git-clone](https://hub.tekton.dev/tekton/task/git-clone) Tekton Task to your environment. Refer to the `git-clone` documentation for instructions on setting up the pipeline with the appropriate parameters to align with your GitHub repository. +1. Deploy the [git-clone](https://artifacthub.io/packages/tekton-task/tekton-catalog-tasks/git-clone) Tekton Task to your environment. Refer to the `git-clone` documentation for instructions on setting up the pipeline with the appropriate parameters to align with your GitHub repository. **NOTE** that the sample pipeline has been pre-configured to facilitate the cloning of public repositories in a straightforward manner. In this setup, simply providing an HTTPS URL for a public repository is adequate to ensure the functionality of the pipeline. diff --git a/task/redhat-dependency-analytics/0.2/README.md b/task/redhat-dependency-analytics/0.2/README.md index dd2233afc3..1e2f50b034 100644 --- a/task/redhat-dependency-analytics/0.2/README.md +++ b/task/redhat-dependency-analytics/0.2/README.md @@ -129,7 +129,7 @@ An example PipelineRun and TaskRun are provided in the `samples` directory in or #### For PipelineRun Example: -1. Deploy the [git-clone](https://hub.tekton.dev/tekton/task/git-clone) Tekton Task to your environment. Refer to the `git-clone` documentation for instructions on setting up the pipeline with the appropriate parameters to align with your GitHub repository. +1. Deploy the [git-clone](https://artifacthub.io/packages/tekton-task/tekton-catalog-tasks/git-clone) Tekton Task to your environment. Refer to the `git-clone` documentation for instructions on setting up the pipeline with the appropriate parameters to align with your GitHub repository. **NOTE** that the sample pipeline has been pre-configured to facilitate the cloning of public repositories in a straightforward manner. In this setup, simply providing an HTTPS URL for a public repository is adequate to ensure the functionality of the pipeline. diff --git a/task/redhat-dependency-analytics/0.3/README.md b/task/redhat-dependency-analytics/0.3/README.md index 6801d46666..8861e36dfc 100644 --- a/task/redhat-dependency-analytics/0.3/README.md +++ b/task/redhat-dependency-analytics/0.3/README.md @@ -142,7 +142,7 @@ An example PipelineRun and TaskRun are provided in the `samples` directory in or #### For PipelineRun Example: -1. Deploy the [git-clone](https://hub.tekton.dev/tekton/task/git-clone) Tekton Task to your environment. Refer to the `git-clone` documentation for instructions on setting up the pipeline with the appropriate parameters to align with your GitHub repository. +1. Deploy the [git-clone](https://artifacthub.io/packages/tekton-task/tekton-catalog-tasks/git-clone) Tekton Task to your environment. Refer to the `git-clone` documentation for instructions on setting up the pipeline with the appropriate parameters to align with your GitHub repository. **NOTE** that the sample pipeline has been pre-configured to facilitate the cloning of public repositories in a straightforward manner. In this setup, simply providing an HTTPS URL for a public repository is adequate to ensure the functionality of the pipeline. diff --git a/task/remote-scp/0.1/README.md b/task/remote-scp/0.1/README.md index 3543cd1a94..3d41014db8 100644 --- a/task/remote-scp/0.1/README.md +++ b/task/remote-scp/0.1/README.md @@ -3,7 +3,7 @@ Remote SCP is a simple tool to copy files from a remote local machine to your se ## Install the Task ``` -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/remote-scp/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/remote-scp/0.1/remote-scp.yaml ``` ## Parameters HOST: The server host to which you want to connect. (Required) diff --git a/task/remote-ssh-commands/0.1/README.md b/task/remote-ssh-commands/0.1/README.md index ef5b149bc3..1c147cbbf7 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://api.hub.tekton.dev/v1/resource/tekton/task/remote-ssh-commands/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/remote-ssh-commands/0.1/remote-ssh-commands.yaml ``` ## Parameters diff --git a/task/replace-tokens/0.1/README.md b/task/replace-tokens/0.1/README.md index cb56fd3da0..78b26c20d0 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://api.hub.tekton.dev/v1/resource/tekton/task/replace-tokens/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/replace-tokens/0.1/replace-tokens.yaml ``` ## Parameters diff --git a/task/rhacs-deployment-check/3.71/README.md b/task/rhacs-deployment-check/3.71/README.md index a81b49590a..f329fd1d3f 100644 --- a/task/rhacs-deployment-check/3.71/README.md +++ b/task/rhacs-deployment-check/3.71/README.md @@ -11,7 +11,7 @@ This task requires an active installation of [Red Hat Advanced Cluster Security ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/rhacs-deployment-check/3.71/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/rhacs-deployment-check/3.71/rhacs-deployment-check.yaml ``` ## Parameters diff --git a/task/rhacs-deployment-check/4.0/README.md b/task/rhacs-deployment-check/4.0/README.md index f636ab3228..d0b2f5c679 100644 --- a/task/rhacs-deployment-check/4.0/README.md +++ b/task/rhacs-deployment-check/4.0/README.md @@ -21,7 +21,7 @@ an authorization token with at least CI privileges. ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/rhacs-deployment-check/4.0/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/rhacs-deployment-check/4.0/rhacs-deployment-check.yaml ``` ## Parameters diff --git a/task/rhacs-generic/0.1/README.md b/task/rhacs-generic/0.1/README.md index 2941d496e5..d925b1d6cd 100644 --- a/task/rhacs-generic/0.1/README.md +++ b/task/rhacs-generic/0.1/README.md @@ -21,7 +21,7 @@ machine-to-machine integration. ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/rhacs-generic/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/rhacs-generic/0.1/rhacs-generic.yaml ``` ## Parameters diff --git a/task/rhacs-image-check/3.71/README.md b/task/rhacs-image-check/3.71/README.md index 8e09b3032b..cf0d109190 100644 --- a/task/rhacs-image-check/3.71/README.md +++ b/task/rhacs-image-check/3.71/README.md @@ -11,7 +11,7 @@ This task requires an active installation of [Red Hat Advanced Cluster Security ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/rhacs-image-check/3.71/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/rhacs-image-check/3.71/rhacs-image-check.yaml ``` ## Parameters diff --git a/task/rhacs-image-check/4.0/README.md b/task/rhacs-image-check/4.0/README.md index 2d11717386..2136807d2f 100644 --- a/task/rhacs-image-check/4.0/README.md +++ b/task/rhacs-image-check/4.0/README.md @@ -23,7 +23,7 @@ an authorization token with at least CI privileges. ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/rhacs-image-check/4.0/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/rhacs-image-check/4.0/rhacs-image-check.yaml ``` ## Parameters diff --git a/task/rhacs-image-scan/3.71/README.md b/task/rhacs-image-scan/3.71/README.md index 2d16c66a02..1da3bb03c3 100644 --- a/task/rhacs-image-scan/3.71/README.md +++ b/task/rhacs-image-scan/3.71/README.md @@ -11,7 +11,7 @@ This task requires an active installation of [Red Hat Advanced Cluster Security ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/rhacs-image-scan/3.71/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/rhacs-image-scan/3.71/rhacs-image-scan.yaml ``` ## Parameters diff --git a/task/rhacs-image-scan/4.0/README.md b/task/rhacs-image-scan/4.0/README.md index e16d611b02..43165a1605 100644 --- a/task/rhacs-image-scan/4.0/README.md +++ b/task/rhacs-image-scan/4.0/README.md @@ -23,7 +23,7 @@ authorization token with at least CI privileges. ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/rhacs-image-scan/4.0/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/rhacs-image-scan/4.0/rhacs-image-scan.yaml ``` ## Parameters diff --git a/task/rhacs-m2m-authenticate/0.1/README.md b/task/rhacs-m2m-authenticate/0.1/README.md index 381f1381a7..ad437ada8f 100644 --- a/task/rhacs-m2m-authenticate/0.1/README.md +++ b/task/rhacs-m2m-authenticate/0.1/README.md @@ -17,7 +17,7 @@ machine-to-machine integration. ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/rhacs-m2m-authenticate/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/rhacs-m2m-authenticate/0.1/rhacs-m2m-authenticate.yaml ``` ## Parameters diff --git a/task/robot-framework/0.1/README.md b/task/robot-framework/0.1/README.md index ae67d53690..cb544ceb1b 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://api.hub.tekton.dev/v1/resource/tekton/task/robot-framework/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/robot-framework/0.1/robot-framework.yaml ``` ## Workspaces diff --git a/task/rsync/0.1/README.md b/task/rsync/0.1/README.md index 4a5789e282..51bca46ba9 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://api.hub.tekton.dev/v1/resource/tekton/task/rsync/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/rsync/0.1/rsync.yaml ``` ## Workspaces diff --git a/task/ruby-lint/0.1/README.md b/task/ruby-lint/0.1/README.md index 94d19297d5..38bd7cc5ae 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://api.hub.tekton.dev/v1/resource/tekton/task/ruby-lint/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ruby-lint/0.1/ruby-lint.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml ``` 2. Create the PVC diff --git a/task/s2i/0.1/README.md b/task/s2i/0.1/README.md index d835ff55f9..262d02622a 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://api.hub.tekton.dev/v1/resource/tekton/task/s2i/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/s2i/0.1/s2i.yaml ``` ## Parameters diff --git a/task/s2i/0.2/README.md b/task/s2i/0.2/README.md index bef83d8da5..1e57ed00e4 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://api.hub.tekton.dev/v1/resource/tekton/task/s2i/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/s2i/0.2/s2i.yaml ``` ## Parameters diff --git a/task/s2i/0.3/README.md b/task/s2i/0.3/README.md index 7824d0f7ec..7d256ef1a8 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://api.hub.tekton.dev/v1/resource/tekton/task/s2i/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/s2i/0.3/s2i.yaml ``` ## Parameters diff --git a/task/scorecard/0.1/README.md b/task/scorecard/0.1/README.md index eba6b9ddf5..8573f7b3ab 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://api.hub.tekton.dev/v1/resource/tekton/task/scorecard/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/scorecard/0.1/scorecard.yaml ``` ## Parameters diff --git a/task/send-to-channel-slack/0.1/README.md b/task/send-to-channel-slack/0.1/README.md index eb9fe97682..a8e67745cf 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://api.hub.tekton.dev/v1/resource/tekton/task/send-to-channel-slack/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-channel-slack/0.1/send-to-channel-slack.yaml ``` 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 2c3c6cfbc3..e69f572212 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://api.hub.tekton.dev/v1/resource/tekton/task/send-to-microsoft-teams/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-microsoft-teams/0.1/send-to-microsoft-teams.yaml ``` 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 60c81fa4e5..230b422ddf 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://api.hub.tekton.dev/v1/resource/tekton/task/send-to-telegram/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-telegram/0.1/send-to-telegram.yaml ``` 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 96080a694b..ed9640db82 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://api.hub.tekton.dev/v1/resource/tekton/task/send-to-webex-room/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-webex-room/0.1/send-to-webex-room.yaml ``` 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 11fd1b14f2..b6d8e8afe8 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://api.hub.tekton.dev/v1/resource/tekton/task/send-to-webhook-discord/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-webhook-discord/0.1/send-to-webhook-discord.yaml ``` 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 e0484ececd..d692c71a94 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://api.hub.tekton.dev/v1/resource/tekton/task/send-to-webhook-slack/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/send-to-webhook-slack/0.1/send-to-webhook-slack.yaml ``` 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 aafe880fb6..1c5b420eb8 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://api.hub.tekton.dev/v1/resource/tekton/task/sendmail/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/sendmail/0.1/sendmail.yaml ``` Create a secret that has the SMTP server information diff --git a/task/sendmail/0.2/README.md b/task/sendmail/0.2/README.md index 1762993b2d..beb78faf04 100644 --- a/task/sendmail/0.2/README.md +++ b/task/sendmail/0.2/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://api.hub.tekton.dev/v1/resource/tekton/task/sendmail/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/sendmail/0.2/sendmail.yaml ``` 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 359629c163..cf1b2b5fe3 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://api.hub.tekton.dev/v1/resource/tekton/task/shellcheck/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/shellcheck/0.1/shellcheck.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml ``` 2. Create the PVC diff --git a/task/skopeo-copy/0.1/README.md b/task/skopeo-copy/0.1/README.md index c716ab5b4d..ffef3d8e5a 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://api.hub.tekton.dev/v1/resource/tekton/task/skopeo-copy/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/skopeo-copy/0.1/skopeo-copy.yaml ``` ## Parameters diff --git a/task/skopeo-copy/0.2/README.md b/task/skopeo-copy/0.2/README.md index 46953a9ab7..98f6195052 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://api.hub.tekton.dev/v1/resource/tekton/task/skopeo-copy/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/skopeo-copy/0.2/skopeo-copy.yaml ``` ## Parameters diff --git a/task/skopeo-copy/0.3/README.md b/task/skopeo-copy/0.3/README.md index d71fab0962..3dd8fa9bc7 100644 --- a/task/skopeo-copy/0.3/README.md +++ b/task/skopeo-copy/0.3/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://api.hub.tekton.dev/v1/resource/tekton/task/skopeo-copy/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/skopeo-copy/0.3/skopeo-copy.yaml ``` ## Parameters diff --git a/task/skopeo-copy/0.4/README.md b/task/skopeo-copy/0.4/README.md index d5ee4c9b82..6cd709824f 100644 --- a/task/skopeo-copy/0.4/README.md +++ b/task/skopeo-copy/0.4/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://api.hub.tekton.dev/v1/resource/tekton/task/skopeo-copy/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/skopeo-copy/0.4/skopeo-copy.yaml ``` ## Parameters diff --git a/task/sonarqube-scanner/0.1/README.md b/task/sonarqube-scanner/0.1/README.md index 519349b7dc..efa73ffa24 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://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-scanner/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/sonarqube-scanner/0.1/sonarqube-scanner.yaml ``` ## Pre-requisite diff --git a/task/sonarqube-scanner/0.2/README.md b/task/sonarqube-scanner/0.2/README.md index b2a453226a..eac9386a83 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://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-scanner/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/sonarqube-scanner/0.2/sonarqube-scanner.yaml ``` ## Pre-requisite @@ -17,7 +17,7 @@ kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-sc Install the `git-clone` task from the catalog ``` -https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.5/raw +https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.5/git-clone.yaml ``` ## Parameters diff --git a/task/sonarqube-scanner/0.3/README.md b/task/sonarqube-scanner/0.3/README.md index 6b549324dd..f2ccc25f15 100644 --- a/task/sonarqube-scanner/0.3/README.md +++ b/task/sonarqube-scanner/0.3/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://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-scanner/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/sonarqube-scanner/0.3/sonarqube-scanner.yaml ``` ## Pre-requisite @@ -17,7 +17,7 @@ kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-sc Install the `git-clone` task from the catalog ``` -https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.7/raw +https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.7/git-clone.yaml ``` ## Parameters diff --git a/task/sonarqube-scanner/0.4/README.md b/task/sonarqube-scanner/0.4/README.md index e50e01dca9..65ca7cf7d8 100644 --- a/task/sonarqube-scanner/0.4/README.md +++ b/task/sonarqube-scanner/0.4/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://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-scanner/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/sonarqube-scanner/0.4/sonarqube-scanner.yaml ``` ## Pre-requisite @@ -17,7 +17,7 @@ kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-sc Install the `git-clone` task from the catalog ``` -https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.7/raw +https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.7/git-clone.yaml ``` ## Parameters diff --git a/task/stackrox-image-check/0.1/README.md b/task/stackrox-image-check/0.1/README.md index b96b48fe15..f6fd280bc1 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://api.hub.tekton.dev/v1/resource/tekton/task/stackrox-image-scan/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/stackrox-image-scan/0.1/stackrox-image-scan.yaml ``` ## Parameters diff --git a/task/stackrox-image-scan/0.1/README.md b/task/stackrox-image-scan/0.1/README.md index 33b6d14d29..3890091c65 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://api.hub.tekton.dev/v1/resource/tekton/task/stackrox-image-scan/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/stackrox-image-scan/0.1/stackrox-image-scan.yaml ``` ## Parameters diff --git a/task/tekton-catalog-publish/0.1/README.md b/task/tekton-catalog-publish/0.1/README.md index 08bdf27b98..a58d7b9532 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://api.hub.tekton.dev/v1/resource/tekton/task/tekton-catalog-publish/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tekton-catalog-publish/0.1/tekton-catalog-publish.yaml ``` ## Parameters diff --git a/task/tekton-catalog-publish/0.2/README.md b/task/tekton-catalog-publish/0.2/README.md index 08bdf27b98..a58d7b9532 100644 --- a/task/tekton-catalog-publish/0.2/README.md +++ b/task/tekton-catalog-publish/0.2/README.md @@ -11,7 +11,7 @@ in `tkn` starting with version v0.18.0. ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/tekton-catalog-publish/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tekton-catalog-publish/0.1/tekton-catalog-publish.yaml ``` ## Parameters diff --git a/task/tekton-operator-install/0.1/README.md b/task/tekton-operator-install/0.1/README.md index af8aa7ae6b..73af191516 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://api.hub.tekton.dev/v1/resource/tekton/task/tekton-operator-install/0.1/raw +kubectl apply --filename https://raw.githubusercontent.com/tektoncd/catalog/main/task/tekton-operator-install/0.1/tekton-operator-install.yaml ``` ## Parameters diff --git a/task/terraform-cli/0.1/README.md b/task/terraform-cli/0.1/README.md index bc32e0ac88..f3d32e4c22 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://api.hub.tekton.dev/v1/resource/tekton/task/terraform-cli/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/terraform-cli/0.1/terraform-cli.yaml ``` 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 e17ee166d4..2904732138 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://api.hub.tekton.dev/v1/resource/tekton/task/tkn/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tkn/0.1/tkn.yaml ``` ## Parameters diff --git a/task/tkn/0.2/README.md b/task/tkn/0.2/README.md index 7f5621f204..2e56860576 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://api.hub.tekton.dev/v1/resource/tekton/task/tkn/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tkn/0.2/tkn.yaml ``` ## Parameters diff --git a/task/tkn/0.3/README.md b/task/tkn/0.3/README.md index f436df5a67..4bf5837408 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://api.hub.tekton.dev/v1/resource/tekton/task/tkn/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tkn/0.3/tkn.yaml ``` ## Parameters diff --git a/task/tkn/0.4/README.md b/task/tkn/0.4/README.md index d4a9e6f978..ed0bd7b551 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://api.hub.tekton.dev/v1/resource/tekton/task/tkn/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tkn/0.4/tkn.yaml ``` ## Parameters diff --git a/task/tkn/0.5/README.md b/task/tkn/0.5/README.md index d4a9e6f978..ed0bd7b551 100644 --- a/task/tkn/0.5/README.md +++ b/task/tkn/0.5/README.md @@ -6,7 +6,7 @@ This task performs operations on Tekton resources using ## Install the Task ```bash -kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/tkn/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/tkn/0.4/tkn.yaml ``` ## Parameters diff --git a/task/trigger-jenkins-job/0.1/README.md b/task/trigger-jenkins-job/0.1/README.md index d075103600..fe2225fdbc 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://api.hub.tekton.dev/v1/resource/tekton/task/trigger-jenkins-job/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/trigger-jenkins-job/0.1/trigger-jenkins-job.yaml ``` ## Parameters diff --git a/task/ts-lint/0.1/README.md b/task/ts-lint/0.1/README.md index 189843b29c..236d615322 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://api.hub.tekton.dev/v1/resource/tekton/task/ts-lint/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/ts-lint/0.1/ts-lint.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml ``` 2. Create the PVC diff --git a/task/wget/0.1/README.md b/task/wget/0.1/README.md index 5338c7abee..9f25dd70e2 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://api.hub.tekton.dev/v1/resource/tekton/task/wget/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/wget/0.1/wget.yaml ``` ## Parameters diff --git a/task/write-file/0.1/README.md b/task/write-file/0.1/README.md index e1c7df18f0..993cda7c2d 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://api.hub.tekton.dev/v1/resource/tekton/task/write-file/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/write-file/0.1/write-file.yaml ``` ## Parameters diff --git a/task/yaml-lint/0.1/README.md b/task/yaml-lint/0.1/README.md index 49ed8e8a2b..ac4783335c 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://api.hub.tekton.dev/v1/resource/tekton/task/yaml-lint/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/yaml-lint/0.1/yaml-lint.yaml ``` ## 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://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.1/git-clone.yaml ``` 2. Create the PVC diff --git a/task/yq/0.1/README.md b/task/yq/0.1/README.md index 42b74c610a..1dd98b2b07 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://api.hub.tekton.dev/v1/resource/tekton/task/yq/0.1/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/yq/0.1/yq.yaml ``` ## Parameters diff --git a/task/yq/0.2/README.md b/task/yq/0.2/README.md index 6361eec0b1..ef44d73c4b 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://api.hub.tekton.dev/v1/resource/tekton/task/yq/0.2/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/yq/0.2/yq.yaml ``` ## Parameters diff --git a/task/yq/0.3/README.md b/task/yq/0.3/README.md index 49052ea7c4..c37e284363 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://api.hub.tekton.dev/v1/resource/tekton/task/yq/0.3/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/yq/0.3/yq.yaml ``` ## Parameters