Managing pipelines
You manage pipelines by defining, editing, deleting, and tracking the execution history of pipelines.
The structure of a pipeline is defined using JSON format. You can use the following example JSON format to define a pipeline per your requirement:
{
"name": "pipeline-name",
"stages": [
{
"name": "stage-name",
"blocks": [
{
"environment": "environment-name",
"processes": [
"application-process-name-1",
"application-process-name-2"
]
}
]
}
]
}
Here, pipeline-name and stage-name are
custom names. The stage-name can be named to signify the
environments you want to deploy. The environment name and application process names
must match with the ones existing in the application.
Note: You
cannot set properties in the application pipelines. The properties must be
preconfigured on the process, environment, and so on.
Manage pipelines from the Applications page as follows: