Open-Toolchain Tekton Catalog

March 23, 2026 · View on GitHub

Catalog of Tekton Tasks usable in Continuous Delivery Tekton Pipelines

Notes:

Tasks

  • cf-deploy-app [deprecated]: This task allows to perform a deployment of a Cloud Foundry application using ibmcloud cf commands.
  • cra-bom [deprecated]: This task creates a Bill-of-Material (BoM) for a given repository that captures pedigree of all the dependencies and it is collected at different granularities.
  • cra-cis-check [deprecated]: This tasks runs configuration checks on kubernetes deployment manifests.
  • cra-comm-editor [deprecated]: This task creates comments on Pull Requests and opens issues regarding bill of material and discovered vunerabilities.
  • cra-discovery [deprecated]: This task accesses various source artifacts from the repository and performs deep discovery to identify all dependencies (including transitive dependencies).
  • cra-terraform-scan-v2 [deprecated]: This task uses ibmcloud cli and the cra plugin to scan ibm-terraform-provider files for compliance issues.
  • cra-terraform-scan [deprecated]: This task scans ibm-terraform-provider files for compliance issues. To configure CRA Terraform scan, Read more about using terraform scan profile
  • cra-v2-cra [deprecated]: This task accesses various source artifacts from a repository and performs deep discovery to identify all dependencies (including transitive dependencies). A Bill-of-Material (BoM) is generated that captures pedigree of all dependencies, collected at different granularities. The BoM is scanned to discover and report any known vulnerabilities in OS and Application pacakges. Finally, configuration checks on kubernetes deployment manifests are performed to uncover any issues.
  • cra-vulnerability-remediation [deprecated]: This task creates comments on Pull Requests and opens issues regarding bill of material and discovered vunerabilities.
  • git-clone-repo: This Task fetches the credentials needed to perform git operations on a repository integrated in a Continuous Delivery toolchain and then uses it to clone (and/or perform the appropriate checkout if pull request parameters are given) of the repository. The output of this task is the repository cloned into the directory on the workspace workspace.
  • git-set-commit-status: This task is setting a git commit status for a given git commit (revision) in a git repository repository integrated in a Continuous Delivery toolchain.
  • slack-post-message: This Task posts a message to the Slack channel(s) integrated with your Continuous Delivery toolchain. The task retrieves a Slack integration(s) from the Toolchain, filtered on the Slack domain (if passed as a parameter) and posts the message to the corresponding channel(s). The message can be: - passed as a parameter - a static Slack formatted JSON payload - a static text message (that will be converted to Slack JSON payload) - dynamically injected - by a bash script - based on the output of previous task(s) stored in the PVC - default message if not set Default value

Breaking Changes

when moving from tag "tekton_pipeline0.10.1"

  • These tasks are using kebab-case style for EVERY parameters names. So parameter pathToContext (in previous versions of the tasks) has been renamed as path-to-context, parameter clusterName has been renamed to cluster-name and so on...

  • communication folder has been renamed to slack folder

  • Some tasks has been renamed to match the following name format <category alias>-<task> where category alias is depending on the folder containing the tasks:

    Folder/CategoryCategory alias
    cloudfoundrycf
    container-registryicr
    devops-insightsdoi
    gitgit
    kubernetes-serviceiks
    slackslack
    toolchaintoolchain

    The task new names are listed in the following table:

    FolderOld task nameNew task name
    container-registrycontainerize-taskicr-containerize
    container-registrycr-build-taskicr-cr-build
    container-registryexecute-in-dind-taskicr-execute-in-dind
    container-registryexecute-in-dind-cluster-taskicr-execute-in-dind-cluster
    container-registryvulnerability-advisor-taskicr-check-va-scan
    gitclone-repo-taskgit-clone-repo
    gitset-commit-statusgit-set-commit-status
    kubernetes-servicefetch-iks-cluster-configiks-fetch-config
    kubernetes-servicekubernetes-contextual-executioniks-contextual-execution
    slackpost-slackslack-post-message
  • Tasks that use workspace(s) may have changed the expected workspace name. Here is the list of the breaking changes for the expected workspace name

    FolderTaskOld workspace nameNew workspace nameDescription
    container-registryicr-containerizeworkspacesourceA workspace containing the source (Dockerfile, Docker context) to create the image
    container-registryicr-cr-buildworkspacesourceA workspace containing the source (Dockerfile, Docker context) to create the image
    container-registryicr-execute-in-dindworkspacesourceA workspace containing the source (Dockerfile, Docker context) to create the image
    container-registryicr-execute-in-dind-clusterworkspacesourceA workspace containing the source (Dockerfile, Docker context) to create the image
    container-registryicr-check-va-scanworkspaceartifactsWorkspace that may contain image information and will have the va report from the VA scan after this task exection
    gitgit-clone-repoworkspaceoutputWorkspace where the git repository will be cloned into
    gitgit-set-commit-statusworkspaceartifactsWorkspace that may contain git repository information (ie build.properties). Should be marked as optional when Tekton will permit it
    kubernetes-serviceiks-fetch-configworkspacecluster-configurationA workspace where the kubernetes cluster config is exported
    kubernetes-serviceiks-contextual-executionworkspacecluster-configurationA workspace that contain the kubectl cluster config to be used

when moving from tag "tekton_pipeline0.10.1" and/or branch "tkn_v1"

  • Tasks that are expecting a secret to retrieve apikey and/or secret values have been updated to use the default secret secure-properties injected by Continuous Delivery Tekton Pipeline support. The updated tasks are:

    • icr-check-va-scan
    • icr-containerize
    • icr-cr-build
    • icr-execute-in-dind
    • icr-execute-in-dind-cluster
    • git-clone-repo
    • git-set-commit-status
    • iks-fetch-config

    Note: As a reminder, in previous version (before secure-properties injection by CD tekton support), the default was set to cd-secret

Criteria for Code Submission

To ensure code quality, protected branches will be enabled soon, and every PR that is to be merged to master will run CI tasks for code quality. These could (and should) be set up for local development environments as well.

Code quality checks currently enabled:

  • yaml lint - using yamllint-rules.yaml as configuration file: yamllint --config-file yamllint-rules.yaml .
  • tekton task lint: tekton-lint '**/*.yaml'
  • Tasks definition validation: check_tasks.sh