2020-07-31 12:38:00 +02:00
metadata :
name : cloudFoundryDeploy
2020-08-24 18:10:45 +02:00
description : "Deploys an application to Cloud Foundry"
2020-07-31 12:38:00 +02:00
longDescription : |
Deploys an application to a test or production space within Cloud Foundry.
spec :
inputs :
2020-08-24 18:10:45 +02:00
secrets :
- name : cfCredentialsId
2020-09-23 13:22:51 +02:00
description : Jenkins 'Username with password' credentials ID containing user and password to authenticate to the Cloud Foundry API.
2020-08-24 18:10:45 +02:00
type : jenkins
aliases :
- name : cloudFoundry/credentialsId
- name : dockerCredentialsId
2020-09-23 13:22:51 +02:00
description : Jenkins 'Username with password' credentials ID containing user and password to authenticate to the Docker registry.
2020-08-24 18:10:45 +02:00
type : jenkins
2020-07-31 12:38:00 +02:00
params :
- name : apiEndpoint
type : string
description : "Cloud Foundry API endpoint"
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : true
default : "https://api.cf.eu10.hana.ondemand.com"
aliases :
- name : cfApiEndpoint
- name : cloudFoundry/apiEndpoint
- name : appName
type : string
description : "Defines the name of the application to be deployed to the Cloud Foundry space"
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
aliases :
- name : cfAppName
- name : cloudFoundry/appName
- name : artifactVersion
type : string
description : "The artifact version, used for influx reporting"
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
resourceRef :
- name : commonPipelineEnvironment
param : artifactVersion
- name : cfHome
type : string
description : "The cf home folder used by the cf cli. If not provided the default assumed by the cf cli is used."
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
- name : cfNativeDeployParameters
type : string
description : "Additional parameters passed to cf native deployment command"
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
- name : cfPluginHome
type : string
2020-08-24 18:10:45 +02:00
description : "The cf plugin home folder used by the cf cli.
If not provided the default assumed by the cf cli is used."
2020-07-31 12:38:00 +02:00
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
- name : deployDockerImage
type : string
2020-08-24 18:10:45 +02:00
description : "Docker image deployments are supported
(via manifest file in general)[https://docs.cloudfoundry.org/devguide/deploy-apps/manifest-attributes.html#docker].
If no manifest is used, this parameter defines the image to be deployed.
The specified name of the image is passed to the `--docker-image` parameter of the cf CLI and must
adhere it's naming pattern (e.g. REPO/IMAGE:TAG).
See (cf CLI documentation)[https://docs.cloudfoundry.org/devguide/deploy-apps/push-docker.html]
for details.
Note : The used Docker registry must be visible for the targeted Cloud Foundry instance."
2020-07-31 12:38:00 +02:00
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
- name : deployTool
type : string
description : "Defines the tool which should be used for deployment."
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
- name : buildTool
type : string
description : "Defines the tool which is used for building the artifact.
If provided, `deployTool` is automatically derived from it.
For MTA projects, `deployTool` defaults to `mtaDeployPlugin`.
For other projects `cf_native` will be used."
scope :
- PARAMETERS
- STAGES
- STEPS
- GENERAL
resourceRef :
- name : commonPipelineEnvironment
param : buildTool
2020-07-31 12:38:00 +02:00
- name : deployType
type : string
2020-08-31 16:10:28 +02:00
description :
"Defines the type of deployment, either `standard` deployment which results in a system
2020-08-24 18:10:45 +02:00
downtime or a zero-downtime `blue-green` deployment.If 'cf_native' as deployType and 'blue-green'
as deployTool is used in combination, your manifest.yaml may only contain one application.
If this application has the option 'no-route' active the deployType will be changed to 'standard'."
2020-07-31 12:38:00 +02:00
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
default : "standard"
- name : dockerPassword
type : string
2020-08-31 16:10:28 +02:00
description :
"If the specified image in `deployDockerImage` is contained in a Docker registry,
2020-08-24 18:10:45 +02:00
which requires authorization, this defines the password to be used."
2020-07-31 12:38:00 +02:00
secret : true
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
2020-07-31 12:38:00 +02:00
mandatory : false
2020-08-28 15:38:15 +02:00
resourceRef :
- name : dockerCredentialsId
type : secret
param : password
2020-07-31 12:38:00 +02:00
- name : dockerUsername
type : string
2020-08-31 16:10:28 +02:00
description :
"If the specified image in `deployDockerImage` is contained in a Docker registry,
2020-08-24 18:10:45 +02:00
which requires authorization, this defines the username to be used."
2020-07-31 12:38:00 +02:00
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
2020-07-31 12:38:00 +02:00
mandatory : false
2020-10-06 08:59:20 +02:00
secret : true
2020-08-28 15:38:15 +02:00
resourceRef :
- name : dockerCredentialsId
type : secret
param : username
2020-07-31 12:38:00 +02:00
- name : keepOldInstance
type : bool
2020-08-31 16:10:28 +02:00
description :
"In case of a `blue-green` deployment the old instance will be deleted by default.
2020-08-24 18:10:45 +02:00
If this option is set to true the old instance will remain stopped in the Cloud Foundry space."
2020-07-31 12:38:00 +02:00
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
2020-07-31 12:38:00 +02:00
mandatory : false
- name : loginParameters
type : string
2020-08-31 16:10:28 +02:00
description :
"Addition command line options for cf login command. No escaping/quoting is performed.
2020-08-24 18:10:45 +02:00
Not recommended for productive environments."
2020-07-31 12:38:00 +02:00
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
- name : manifest
type : string
description : "Defines the manifest to be used for deployment to Cloud Foundry."
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
aliases :
- name : cfManifest
- name : cloudFoundry/manifest
- name : manifestVariables
type : "[]string"
2020-08-31 16:10:28 +02:00
description :
"Defines a list of variables as key-value Map objects used for variable substitution
2020-08-24 18:10:45 +02:00
within the file given by manifest. Defaults to an empty list, if not specified otherwise.
This can be used to set variables like it is provided by 'cf push --var key=value'.
The order of the maps of variables given in the list is relevant in case there are conflicting
variable names and value between maps contained within the list. In case of conflicts, the last
specified map in the list will win. Though each map entry in the list can contain more than one
key-value pair for variable substitution, it is recommended to stick to one entry per map,
and rather declare more maps within the list. The reason is that if a map in the list contains
more than one key-value entry, and the entries are conflicting, the conflict resolution behavior
is undefined (since map entries have no sequence).
Note : variables defined via 'manifestVariables' always win over conflicting variables defined
via any file given by 'manifestVariablesFiles' - no matter what is declared before.
This is the same behavior as can be observed when using 'cf push --var' in combination
with 'cf push --vars-file'."
2020-07-31 12:38:00 +02:00
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
aliases :
- name : cfManifestVariables
- name : cloudFoundry/manifestVariables
- name : manifestVariablesFiles
type : "[]string"
2020-08-31 16:10:28 +02:00
description :
"path(s) of the Yaml file(s) containing the variable values to use as a
2020-08-24 18:10:45 +02:00
replacement in the manifest file. The order of the files is relevant in case there are
conflicting variable names and values within variable files.
In such a case, the values of the last file win."
2020-07-31 12:38:00 +02:00
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-10-16 09:44:41 +02:00
default : [ "manifest-variables.yml" ]
2020-07-31 12:38:00 +02:00
mandatory : false
aliases :
- name : cfManifestVariablesFiles
- name : cloudFoundry/manifestVariablesFiles
- name : mtaDeployParameters
type : string
description : "Additional parameters passed to mta deployment command"
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
default : "-f"
- name : mtaExtensionDescriptor
type : string
description : "Defines additional extension descriptor file for deployment with the mtaDeployPlugin"
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
aliases :
- name : cloudFoundry/mtaExtensionDescriptor
2021-01-12 10:39:04 +02:00
- name : mtaExtensionCredentials
type : "map[string]interface{}"
description : "Defines a map of credentials that need to be replaced in the `mtaExtensionDescriptor`. This map needs to be created as `value-to-be-replaced`:`id-of-a-credential-in-jenkins`"
scope :
- PARAMETERS
- STAGES
- STEPS
- GENERAL
mandatory : false
aliases :
- name : cloudFoundry/mtaExtensionCredentials
2020-07-31 12:38:00 +02:00
- name : mtaPath
type : string
description : "Defines the path to *.mtar for deployment with the mtaDeployPlugin"
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
resourceRef :
- name : commonPipelineEnvironment
param : mtarFilePath
- name : org
type : string
description : "Cloud Foundry target organization."
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
aliases :
- name : cfOrg
- name : cloudFoundry/org
mandatory : true
secret : false
- name : password
type : string
description : "Password"
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
2020-07-31 12:38:00 +02:00
mandatory : true
secret : true
2020-08-28 15:38:15 +02:00
resourceRef :
- name : cfCredentialsId
type : secret
param : password
2020-10-13 14:14:47 +02:00
- type : vaultSecret
paths :
2020-12-03 19:30:32 +02:00
- $(vaultPath)/cloudfoundry-$(org)-$(space)
- $(vaultBasePath)/$(vaultPipelineName)/cloudfoundry-$(org)-$(space)
- $(vaultBasePath)/GROUP-SECRETS/cloudfoundry-$(org)-$(space)
2020-07-31 12:38:00 +02:00
- name : smokeTestScript
type : string
2020-08-31 16:10:28 +02:00
description :
"Allows to specify a script which performs a check during blue-green deployment.
2020-08-24 18:10:45 +02:00
The script gets the FQDN as parameter and returns `exit code 0` in case check returned
`smokeTestStatusCode`.
More details can be found [here](https://github.com/bluemixgaragelondon/cf-blue-green-deploy#how-to-use).
Currently this option is only considered for deployTool `cf_native`."
2020-07-31 12:38:00 +02:00
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
default : "blueGreenCheckScript.sh"
- name : smokeTestStatusCode
type : int
description : "Expected status code returned by the check."
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
mandatory : false
default : 200
- name : space
type : string
description : "Cloud Foundry target space"
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
- GENERAL
2020-07-31 12:38:00 +02:00
aliases :
- name : cfSpace
- name : cloudFoundry/space
mandatory : true
- name : username
type : string
description : "User"
scope :
2020-08-24 18:10:45 +02:00
- PARAMETERS
- STAGES
- STEPS
2020-07-31 12:38:00 +02:00
mandatory : true
secret : true
2020-08-28 15:38:15 +02:00
resourceRef :
- name : cfCredentialsId
type : secret
param : username
2020-10-13 14:14:47 +02:00
- type : vaultSecret
paths :
2020-12-03 19:30:32 +02:00
- $(vaultPath)/cloudfoundry-$(org)-$(space)
- $(vaultBasePath)/$(vaultPipelineName)/cloudfoundry-$(org)-$(space)
- $(vaultBasePath)/GROUP-SECRETS/cloudfoundry-$(org)-$(space)
2020-07-31 12:38:00 +02:00
containers :
- name : cfDeploy
2021-02-11 10:31:25 +02:00
image : ppiper/cf-cli:6
2020-07-31 12:38:00 +02:00
outputs :
resources :
- name : influx
type : influx
params :
- name : deployment_data
fields :
- name : artifactUrl
- name : deployTime
- name : jobTrigger
tags :
- name : artifactVersion
- name : deployUser
- name : deployResult
- name : cfApiEndpoint
- name : cfOrg
- name : cfSpace