Pipeline activites
Jenkins X creates pipeline activites for jobs. It’s a kubernetes custom resource (CR) which is scoped to a namespace.
Pipeline activities are made up of steps. A step can have three kinds
- Stage
- Preview
- Promote
Each type of step has a name, status, start and end timestamp. A pipeline activity can have steps of different kinds (for example a pipeline activity can have a stage, preview and promote step) Let’s look at each of these kinds in detail.
Stage
A step of kind step is made up of multiple sub steps and is normally associated with the Continuous Integration (CI) part of Jenkins X. The build controller which runs in the development environment creates a stage for every tekton taskrun.
Example of a pipeline activity with a step of kind stage is shown below (some fields are left out for simplicity):
This is a simple Jenkins X pipeline activity which has a step of kind stage.
Preview
A Preview step is responsible for creating a preview environment as part of a pull request. To learn more about environments see this.
A simple pipeline activity with a step of kind preview is shown below (some fields are left out for simplicity):
Apart from the stage step, there is a preview step in the pipeline activity.
Promote
A Promote step is responsible for deploying a version of the application to an environment. To learn more about environments see this.
A simple pipeline activity with step of kind promotion is shown below (some fields are left out for simplicity):
This pipeline activity has two steps of kind promote (apart from the one step of kind stage). The first promote step promotes to staging environment and the second step promotes to production environment.
You can view all pipeline activities in your cluster by running:
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.