WARNING: Jenkins X version 2.x is unmaintained. Do not use it.
Please refer to the v3 documentation for the latest supported version.
Jenkins X Pipeline Syntax Reference
cloud native serverless pipelines
Syntax for jenkins-x.yml
and build packs
Where to Define Your Pipelines
Pipelines can either be defined in build packs, used for
multiple projects, or in the jenkins-x.yml
file in a project’s repository.
When defining pipelines in a build pack, the top-level configuration below is
used directly, while in jenkins-x.yml
, the top-level configuration is under
the pipelineConfig
key.
Top-Level Configuration
extends
- A build pack can extend another build pack, inheriting its configuration and contributing its own additional behavior.file
- The name of the build pack to inherit from.import
- If the build pack to inherit from is not in the same repository as this build pack, specify where to import it from.
agent
- A default agent configuration for all pipelines in the build pack or project.env
- Environment variables to be made available for all pipelines in the build pack or project.containerOptions
- Default configuration for step containers for all pipelines in the build pack or project.pipelines
- The pipeline definitions for this build pack or project.
Specifying and Overriding Release, Pull Request, and Feature Pipelines
pullRequest
,release
,feature
- The configuration for the three pipeline types for this build pack or project.setup
- The first stage to run.setVersion
- The second stage to run.preBuild
- The third stage to run.build
- The fourth stage to run.postBuild
- The fifth stage to run.promote
- The sixth and final stage to run.pipeline
- The full definition of the pipeline. Mutually exclusive withsetup
, etc.
overrides
- A list of overriding changes to make to the inherited or default pipeline.pipeline
- The name of the pipeline this override should be applied to (release
,pullRequest
, orfeature
). If unspecified, this override will be applied to all pipelines.stage
- The name of the stage this override should be applied to. If unspecified, this override will be applied to all stages.name
- The name of the step this override should be applied to. If unspecified, this override will be applied to all steps.step
- A single step which will be used to override the named step or, if no step name is given, all steps in the specified stage. If neitherstep
norsteps
is given, all steps in matching stages in matching pipelines will be removed.steps
- One or more steps which will be used to override the named step or, if no name is given, all steps in the specified stage.type
- Whether thestep
orsteps
should replace the named step, be prepended before the named step, or be appended after the named step. Possible values arereplace
,before
, orafter
.agent
- An agent definition that will replace the existing agent definition for matching pipelines and stages. Step agents are not changed.
default
- A full pipeline definition that will be used for thepullRequest
,release
, andfeature
pipelines if they are not already specified.
Build pack stages
preSteps
- A list of steps to run before the main body of steps for this stage.preSteps
is not inherited from parent build packs.steps
- The main body of steps to run for this stage. If inheriting from a parent build pack, these steps will be appended to the parent build pack’ssteps
by default.replace
- An optional boolean. If true, the inherited stage definition’ssteps
will be replaced, rather than appended to.
Defining an Individual Pipeline
Configuration for the Whole Pipeline
agent
- A default agent definition to use for any stages without their own agents specified. Overrides build pack or project agent definition.env
- Environment variables set for the entire pipeline, which can be overridden in individual stages and steps.options
- Additional configuration for the entire pipeline.timeout
- The maximum duration for execution of the pipeline, after which the build will be terminated.time
- How long to wait until timing out the build.unit
- The unit fortime
. Can be any ofseconds
,minutes
, orhours
. Defaults toseconds
if unspecified.
containerOptions
- Default configuration for step containers within this pipeline, overriding any common settings with build pack or project default configuration.sidecars
- One or more Kubernetes containers which will be added to every stage in the pipeline, to provide additional features in the pods.volumes
- One or more Kubernetes volumes which will be added to every stage in the pipeline, and can be mounted viacontainerOptions
.
dir
- Optional default working directory for stages and steps in this pipeline. Can either be relative, under the/workspace/source
directory were the project source will be checked out, or absolute.stages
- A list of one or more stages.
Configuration for Stages
name
- The name of the stage. Required and must be unique.agent
- The agent definition to use for this stage, overriding the agent specified for the whole pipeline if one is specified.options
- Additional configuration for the stage.containerOptions
- Default configuration for step containers within this stage, overriding any common settings with the whole pipeline default configuration.sidecars
- One or more Kubernetes containers which will be added to this stage’s pod, to provide additional features.volumes
- One or more Kubernetes volumes which will be added to this stage’s pod, and can be mounted viacontainerOptions
.
env
- Environment variables set for all steps or nested stages, overriding any variables defined for the whole pipeline.stages
- A list of stages to run sequentially within this stage, inheriting this stage’s configuration. Cannot be used with eithersteps
orparallel
.parallel
- A list of stages to run in parallel, inheriting this stage’s configuration. Cannot be used with eithersteps
orstages
.dir
- Optional default working directory for steps and nested stages. Can either be relative under the/workspace/source
directory or absolute.steps
- A list of steps to run in this stage. Cannot be used with eitherstages
orparallel
.
Configuration for Steps
name
- A name for the step, used in logging and for overrides.command
- The command to execute in this step.args
- An array of arguments to the command.dir
- Optional working directory for this step.agent
- Optional agent configuration for this step.loop
- Repeats the nestedsteps
for each value in the specified list.variable
- The name of the environment variable to be set with the value for this loop iteration.values
- A list of strings to iterate over.steps
- One or more steps to run for each iteration of the loop.
env
- Environment variables set for this step, adding to inherited environment variables from the stage and pipeline.
Common Directives
agent
- What container image should be used.image
- A container image, either as a fully qualified image or a pod template name.label
- Only used with static Jenkins masters - the Jenkins agent label to use.
env
- One or more environment variables.name
- The name of the environment variable.value
- The value of the environment variable.
containerOptions
- See Kubernetes container configuration.
name
,command
,args
,image
, andworkingDir
cannot be specified. - Common use cases for
containerOptions
include resource requests and limits, and volume mounts.
- See Kubernetes container configuration.
Examples
Full pipeline definition in jenkins-x.yml
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.
Last modified July 31, 2020: feat(pipelines): document new support for Tekton Sidecar containers (9d094b8636)