pipeline

Generate a Tekton Pipeline orchestrating build and security tasks with workspaces.

35|38|Updated Feb 5, 2026
One-click install
npx skills add https://github.com/IBM/bob-demo --skill pipeline-ibm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pipeline
Source: https://github.com/IBM/bob-demo/tree/main/tekton-devops/input-documents/hello-world-tekton/skills/pipeline
Command: npx skills add https://github.com/IBM/bob-demo --skill pipeline-ibm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Tekton Pipelines provide a structured way to define and execute CI/CD workflows. This skill helps generate a Pipeline that orchestrates a sequence of tasks for building and securing software, using previously defined tasks in the pipeline.

Core Features & Use Cases

  • Pipeline orchestration: Define a Tekton Pipeline that sequences the build and security steps.
  • Workspace management: Properly configure and pass workspaces between tasks.
  • Use Case: In a project with multiple tasks, generate a pipeline and a corresponding PipelineRun to execute them in order.

Quick Start

Provide a Tekton Pipeline that sequences the build and security tasks from prior steps, then create a corresponding PipelineRun.

Frequently Asked Questions about pipeline

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a Tekton Pipeline to orchestrate build and security tasks?

To create a Tekton Pipeline, define the workflow of task execution by sequencing previously defined build and security tasks. The pipeline coordinates these tasks, declares all required parameters, and manages workspaces for passing data between steps.

How does workspace management work when automating CI/CD workflows with Tekton?

Workspace management in Tekton involves properly configuring and passing workspaces between tasks in a pipeline. The generated pipeline ensures workspaces are declared and connected so that build and security tasks share execution context within defined volumes.

Do I need a serviceAccountName to run a Tekton Pipeline with container registry access?

Yes, you need a serviceAccountName for registry access when running a Tekton Pipeline. The pipeline produces a PipelineRun that specifies the serviceAccountName, ensuring the executed tasks have the necessary credentials to pull and push container images.

Can I use this to generate a PipelineRun for Kubernetes CI/CD automation?

Yes, you can generate a PipelineRun for Kubernetes CI/CD automation. The pipeline creates a corresponding PipelineRun that executes the sequenced build and security tasks in order within defined workspaces on your Kubernetes cluster.

What is the best way to sequence prior tasks into a single Tekton pipeline?

The best way to sequence prior tasks into a Tekton pipeline is to generate a pipeline definition that assembles them in a specific order. This ensures the workflow of task execution is coordinated, managing all parameters and workspaces across the build and security steps.