mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
26 lines
636 B
Markdown
26 lines
636 B
Markdown
# ${docGenStepName}
|
|
|
|
## ${docGenDescription}
|
|
|
|
## Prerequisites
|
|
|
|
* Cloud Foundry organization, space and deployment user are available
|
|
* Credentials for deployment have been configured in Jenkins with a dedicated Id
|
|
|
|
![Jenkins credentials configuration](../images/cf_credentials.png)
|
|
|
|
## ${docGenParameters}
|
|
|
|
## ${docGenConfiguration}
|
|
|
|
## Example
|
|
|
|
```groovy
|
|
cloudFoundryDeploy(
|
|
script: script,
|
|
deployType: 'blue-green',
|
|
cloudFoundry: [apiEndpoint: 'https://test.server.com', appName:'cfAppName', credentialsId: 'cfCredentialsId', manifest: 'cfManifest', org: 'cfOrg', space: 'cfSpace'],
|
|
deployTool: 'cf_native'
|
|
)
|
|
```
|