A resource that will deploy releases and stemcells using the BOSH CLI v2.
The original BOSH Deployment Resource uses the Ruby CLI and does not support newer BOSH features.
- This resource requires that the target director's SSL certificate is trusted. If the director's certificate is not already trusted by normal root authorities, a custom CA certificate must be provided.
To use the BOSH Deployment Resource, you must declare it in your pipeline as a resource type:
resource_types:
- name: bosh-deployment
type: docker-image
source:
repository: cloudfoundry/bosh-deployment-resource
-
deployment
: Required. The name of the deployment. -
target
: Optional. The address of the BOSH director which will be used for the deployment. If omitted, target_file must be specified via out parameters, as documented below. -
client
: Required. The username or UAA client ID for the BOSH director. -
client_secret
: Required. The password or UAA client secret for the BOSH director. -
ca_cert
: Optional. CA certificate used to validate SSL connections to Director and UAA. If omitted, the director's certificate must be already trusted. -
vars_store
: Optional. Configuration for a persisted variables store. Currently only the Google Cloud Storage (GCS) provider is supported.json_key
must be the the JSON key for your service account. Example:provider: gcs config: bucket: my-bucket file_name: path/to/vars-store.yml json_key: "{\"type\": \"service_account\"}"
- name: staging
type: bosh-deployment
source:
deployment: staging-deployment-name
target: https://bosh.example.com:25555
client: admin
client_secret: admin
ca_cert: "-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"
Sometimes source configuration cannot be known ahead of time, such as when a BOSH director is created as part of your
pipeline. In these scenarios, it is helpful to be able to have a dynamic source configuration. In addition to the
normal parameters for put
, the following parameters can be provided to redefine the source:
source_file
: Optional. Path to a file containing a YAML or JSON source config. This allows the target to be determined at runtime, e.g. by acquiring a BOSH lite instance using the Pool resource. The content of thesource_file
should have the same structure as the source configuration for the resource itself. Thesource_file
will be merged into the exist source configuration.
Note: This is only supported for a put
.
- put: staging
params:
source_file: path/to/sourcefile
Sample source file:
{
"target": "dynamic-director.example.com",
"client_secret": "generated-secret",
"vars_store": {
"config": {
"bucket": "my-bucket"
}
}
}
This will download the deployment manifest. It will place two files in the target directory:
manifest.yml
: The deployment manifesttarget
: The hostname for the director
Note: Only the most recent version is fetchable
compiled_releases
: Optional. List of compiled releases to download. Deployment can only have one stemcell.
- get: staging
params:
compiled_releases:
- name: release-one
- name: release-two
This will upload any given stemcells and releases, lock them down in the deployment manifest and then deploy.
-
manifest
: Required. Path to a BOSH deployment manifest file. -
stemcells
: Optional. An array of globs that should point to where the stemcells used in the deployment can be found. Stemcell entries in the manifest with version 'latest' will be updated to the actual provided stemcell versions. -
releases
: Optional. An array of globs that should point to where the releases used in the deployment can be found. -
vars
: Optional. A collection of variables to be set in the deployment manifest. -
vars_files
: Optional. A collection of vars files to be interpolated into the deployment manifest. -
ops_files
: Optional. A collection of ops files to be applied over the deployment manifest. -
cleanup
: Optional An boolean that specifies if a bosh cleanup should be run before deployment. Defaults to false. -
no_redact
: Optional Removes redacted from Bosh output. Defaults to false. -
target_file
: Optional. Path to a file containing a BOSH director address. This allows the target to be determined at runtime, e.g. by acquiring a BOSH lite instance using the Pool resource.If both
target_file
andtarget
are specified,target_file
takes precedence.
- put: staging
params:
manifest: path/to/manifest.yml
stemcells:
- path/to/stemcells-*
releases:
- path/to/releases-*
vars:
enable_ssl: true
domains: ["example.com", "example.net"]
smtp:
server: example.com
port: 25