Please use the Pivotal Network release of pcf-pipelines
for stability. Using this repo directly may result in breaking the pipelines that consume it. Tracking master is considered unstable.
This is a collection of Concourse pipelines for installing and upgrading Pivotal Cloud Foundry.
Other pipelines which may be of interest are listed at the end of this README.
Deploys PCF for whichever IaaS you choose. For public cloud installs, such as AWS, Azure, and GCP, the pipeline will deploy the necessary infrastructure in the public cloud, such as the networks, loadbalancers, and databases, and use these resources to then deploy PCF (Ops Manager and Elastic Runtime). On-premise private datacenter install pipelines, such as with vSphere and Openstack, do not provision any infrastructure resources and only deploy PCF, using resources that are specified in the parameters of the pipeline.
The desired output of these install pipelines is a PCF deployment that matches the Pivotal reference architecture, usually using three availability zones and opting for high-availability components whenever possible. If you want to deploy a different architecture, you may have to modify these pipelines to get your desired architecture.
These pipelines are found in the install-pcf
directory, sorted by IaaS.
Compatibility Matrix
IAAS | pipelines release | OM version | ERT version |
---|---|---|---|
vSphere | v23 | 2.0.x | 2.0.x |
Azure | v23 | 2.0.x | 2.0.x |
AWS | v23 | 2.0.x | 2.0.x |
GCP | v23 | 2.0.x | 2.0.x |
OpenStack | v23 | 2.0.x | 2.0.x |
IAAS | pipelines release | OM version | ERT version |
---|---|---|---|
vSphere | v22 | 1.12.x | 1.12.x |
Azure | v22 | 1.12.x | 1.12.x |
AWS | v22 | 1.12.x | 1.12.x |
GCP | v22 | 1.12.x | 1.12.x |
OpenStack | v22 | 1.12.x | 1.12.x |
IAAS | pipelines release | OM version | ERT version |
---|---|---|---|
vSphere | v0.17.0 | 1.11.12 | 1.11.8 |
Azure | v0.17.0 | 1.11.12 | 1.11.8 |
AWS | v0.17.0 | 1.11.12 | 1.11.8 |
GCP | v0.17.0 | 1.11.12 | 1.11.8 |
- Note: ERT v1.11.14 is not compatible with pcf-pipelines
Used to keep your PCF foundation up to date with the latest patch versions of PCF software from Pivotal Network. They can upgrade Ops Manager, Elastic Runtime, other tiles, and buildpacks. You will need one pipeline per tile in your foundation, to keep every tile up to date, and one pipeline to keep Ops Manager up to date.
These upgrade pipelines are intended to be kept running for as long as the foundation exists. They will be checking Pivotal Network periodically for new software versions, and apply these updates to the foundation. Currently, these pipelines are only intended for patch upgrades of PCF software (new --.--.n+1 versions), and are not generally recommended for minor/major upgrades (--.n+1.-- or n+1.--.-- versions). This is because new major/minor upgrades generally require careful reading of the release notes to understand what changes will be introduced with these releases before you commit to them, as well as additional configuration of the tiles/Ops Manager (these upgrade pipelines do not have any configure steps, by default).
These pipelines are found in any of the directories with the upgrade-
prefix.
The upgrade-tile pipeline is compatible with the latest version of pcf-pipelines. However, as discussed, this pipeline is only used for patch upgrades.
- install a Concourse server
- download the Fly CLI to interact with the Concourse server
- depending on where you've installed Concourse, you may need to set up additional firewall rules to allow Concourse to reach third-party sources of pipeline dependencies
-
Log in to Pivotal Network and download the latest version of PCF Platform Automation with Concourse (PCF Pipelines).
-
Each pipeline has an associated
params.yml
file. Edit theparams.yml
with details related to your infrastructure. -
Log in and target your Concourse:
fly -t yourtarget login --concourse-url https://yourtarget.example.com
-
Set your pipeline with the
params.yml
file you created in step two above. For example:fly -t yourtarget set-pipeline \ --pipeline upgrade-opsman \ --config upgrade-ops-manager/aws/pipeline.yml \ --load-vars-from upgrade-ops-manager/aws/params.yml
-
Navigate to the pipeline url, and unpause the pipeline.
-
Depending on the pipeline, the first job will either trigger on its own or the job will require manual intervention. Some pipelines may also require manual work during the duration of the run to complete the pipeline.
It's possible to customize pcf-pipelines
to suit your particular needs using
yaml-patch
.
This tool supports all operations from RFC-6902 (for YAML documents instead of JSON). which can be applied to a source YAML file, such as pcf-pipelines
pipeline definition files. It allows for a repeatable and automated mechanism to apply the same local customization operations to one or more pipeline YAML files for every new release of pcf-pipelines
that gets delivered.
For a source YAML file containing just one element in its jobs
array, here is how to add a second job element to it.
- Source YAML:
source.yml
---
jobs:
- name: first-job
plan:
- get: my-resource
- Operations file:
add-job.yml
- op: add
path: /jobs/-
value:
name: second-job
plan:
- get: my-second-resource
-
Execute
yaml-patch
command
cat source.yml | yaml-patch -o add-job.yml > result.yml
-
Resulting patched file:
result.yml
---
jobs:
- name: first-job
plan:
- get: my-resource
- name: second-job
plan:
- get: my-second-resource
See file yaml-patch-examples.md for additional yaml-patch
samples and usage patterns.
There is an experimental tool which you may find helpful for deploying and managing multiple customized pipelines all at once, called PCF Pipelines Maestro. It uses a single pipeline to generate multiple pipelines for as many PCF foundations as you need.
Our goal is to at least support the latest version of PCF with these pipelines. Currently there is no assurance of backwards compatibility, however we do keep past releases of the pipelines to ensure there is at least one version of the pipelines that would work with an older version of PCF.
Compatibility is generally only an issue whenever Pivotal releases a new version of PCF software that requires additional configuration in Ops Manager. These new required fields then need to be either manually configured outside the pipeline, or supplied via a new configuration added to the pipeline itself.
By default, the pipelines require outbound access to the Internet to pull resources such as releases from Pivotal Network and images from DockerHub. Various aspects of the pipelines need to be modified for them to work on an airgapped environment.
To help with the modification and adaptation of the pipelines for such environments, two sample transformation/bootstraping pipelines are provided in this repository:
create-offline-pinned-pipelines
: adaptspcf-pipelines
to run on airgapped environments and downloads required resources into a S3 repository.unpack-pcf-pipelines-combined
: bootstraps an airgapped S3 repository with the produced offline pipelines and resources fromcreate-offline-pinned-pipelines
.
For more details on these pipelines, along with usage instructions, refer to the Offline Pipelines for Airgapped Environments documentation page.
For practicalities, please see our Contributing page for more information.
The pipelines and tasks in this repo follow a simple pattern which must be adhered to:
.
├── some-pipeline
| ├── params.yml
| └── pipeline.yml
└── tasks
├── a-task
│ ├── task.sh
│ └── task.yml
└── another-task
├── task.sh
└── task.yml
Each pipeline has a pipeline.yml
, which contains the YAML for a single
Concourse pipeline. Pipelines typically require parameters, either for resource
names or for credentials, which are supplied externally via {{placeholders}}
.
A pipeline may have a params.yml
file which is a template for the parameters
that the pipeline requires. This template should have placeholder values,
typically CHANGEME, or defaults where appropriate. This file should be filled
out and stored elsewhere, such as in LastPass, and then supplied to fly
via
the -l
flag. See the
fly documentation for more.
Pipelines should define jobs that encapsulate conceptual chunks of work, which
is then split up into tasks within the job. Jobs should use aggregate
where
possible to speed up actions like getting resources that the job requires.
Pipelines should not declare task YAML inline; they should all exist within a
directory under tasks/
.
Each task has a task.yml
and a task.sh
file. The task YAML has an internal
reference to its task.sh
.
Tasks declare what their inputs and outputs are. These inputs and outputs should be declared in a generic way so they can be used by multiple pipelines.
Tasks should not use wget
or curl
to retrieve resources; doing so means the
resource cannot be cached, cannot be pinned to a particular version, and cannot
be supplied by alternative means for airgapped environments.
There are a series of tests that should be run before creating a PR or pushing new code. Run them with ginkgo:
go get github.com/onsi/ginkgo/ginkgo
go get github.com/onsi/gomega
go get github.com/concourse/atc
ginkgo -r -p
PCFS Sample Pipelines - includes pipelines for
- integrating Artifactory, Azure blobstores, GCP storage, or Docker registries
- blue-green deployment of apps to PCF
- backing up PCF
- deploying Concourse itself with bosh.
- and more...