* Adapted documentation * Adapted documentation * Adapted documentation * Adapted documentation * Adapted documentation * Added CFDeleteServiceKeys * Added ServiceKey deletion tests * added cfServiceKeys flag explanation to documentation * removed trailing spaces from documentation * resolving conflicts * Changed deletion message an variable naming * Changed tests * Changed tests * Changed tests * Changed tests * Changed CloudFoundryDeleteServiceOptions to options * Changed CloudFoundryDeleteServiceOptions to options * Minor changes * Minor changes * Changed variable naming * Changed error handling * Changed error handling and logging * Changed documentation * Simplified code * Fixed CodeClimate issues * Changed from returning err to nil where no errur returned needed * Add cloudFoundryCreateServiceKey Go Step * Changed Groovy File * Changed aliases * Removed unneccessary parts * Minor changes * Minor changes * Adapted documentation * Adapted tests * Adapted Groovy File * Changed Groovy file * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Removed Groovy Tests for cfCreateServiceKey * Minor changes * Added ATC Check YAML * Added ATC Check generated files * Added test class * Added abapEnvironmentRunATCCheck * Minor changes * Minor changes * Changed groovy * Minor changes * Changed groovy * Changed groovy * Minor changes * Adapted Groovy imports * Adapted Groovy imports * Adapted Groovy imports * Adapted Groovy * Getting ATC results * Changed error message * changed groovy * removed trailing spaces * Added login check * Minor changes * Added step to whitelistScriptReference * Added ATC error message handling * Added groovy file * Added step to groovy tests * corrected metadata file * Debugging * Debugging * Added yaml config parameter for ATC run * Adapted file location of ATC run config to jenkins specific location * Implementing universal pipeline logic for finding yaml config regardless of pipeline * Changed error handling for reading config yaml file * Changed atcrunconfig alias * minor changes * Minor changes * Minor changes * Changed back to dynamic file reading * Minor changes * filepath changes * Removing CF Login * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Removed whitespaces * Added CF functions unit tests * Added invalid parameter handling * Removed package and SC flag * Minor changes * Changed tests * Changed tests * Changed tests * Minor changes * Changed tests * removed unnecessary logout * Added documentation * Changed docu * Changed docu * Changed docu * Changed docu * Changed docu * Changed docu * Changed docu * Changed docu * Changed docu * Changed docu * Removed trailing spaces * Added newline at end of file * code climate fixes * code climate fixes * code climate fixes * Minor changes * Minor changes * Minor changes * Changed tests * Test changes * Splitted Cloud Foundry functions into two classes * Removed two steps from whtielistScriptReference * removed atcrunConfig alias * issue fixes * Changed docu * Changed docu * Changed docu * Removed trailing spaced from docu * Changed docu * Go generator run * Issue fixes * Remove unnecessary imports Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> * Update whitelistScript Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> * Adding piperutils for writing xml file * Persisting ATC Results with piperutils * Set failonMissingReports to true * Refactoring for CodeClimate * Changed result file name * Changed credentials aliases * changing secret name * Removing trailing spaces * Added secret name and alias to docu * PR commit * Go generator * Code Climate fixes * Code Climate fixes * Code Climate fixes * Removed existing groovy tests * Added cfCreateService to fieldRelatedWhiteList * Remarks * added file checking * tests adapted * Changed to execRunner * Removed workingDir definition * Removed workingDir definition * Removed workingDir definition * Added default * Added aliases * Changing to CFUtils Exec Runner * Change defaults * Removed trailing spaces * Refactoring and test changes * Added manifest file default & re-arranged defer func * TestFiles creation added * Changed alias values * Corrected defer logout err return Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com> Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> Co-authored-by: Daniel Mieg <56156797+DanielMieg@users.noreply.github.com>
5.8 KiB
${docGenStepName}
${docGenDescription}
Prerequisites
- You have a user for the SAP Cloud Platform Cloud Foundry Environment
- Credentials have been configured in Jenkins with a dedicated Id
${docGenParameters}
${docGenConfiguration}
${docJenkinsPluginDependencies}
Example
-
Single Service Creation in Cloud Foundry example with JSON-configuration in Jenkinsfile
The following example creates a single Service in Cloud Foundry. It makes use of the cfCreateServiceConfig
flag for passing a JSON configuration as an in-line parameter string as well as the cfServiceTags
for providing user tags.
You can store the credentials in Jenkins and use the cfCredentialsId
parameter to authenticate to Cloud Foundry.
This can be done accordingly:
cloudFoundryCreateService(
cfApiEndpoint : 'https://test.server.com',
cfOrg : 'cfOrg',
cfSpace: 'cfSpace',
cfCredentialsId: 'cfCredentialsId',
cfService: 'myService',
cfServiceInstanceName: 'myServiceInstanceName',
cfServicePlan: 'myPlan',
cfCreateServiceConfig: '{\"example\":\"value\",\"example\":\"value\"}',
cfServiceTags: 'list, of, tags',
script: this,
)
If you chose to having a dedicated JSON file for the JSON configuration for the cfCreateServiceConfig
flag you can do so by referencing the file path accordingly. This file should be stored in the same folder as your Jenkinsfile
that starts the Pipeline in order for the Pipeline to be able to find the file. Most favourable SCM is Git.
Such a JSON file with the appropriate step configuration could look as follows:
The JSON config file, e.g. createServiceConfig.json
can look like this:
{
"example":"value",
"example":"value"
}
The step configuration needs to contain the path to the JSON file:
cloudFoundryCreateService(
cfApiEndpoint : 'https://test.server.com',
cfOrg : 'cfOrg',
cfSpace: 'cfSpace',
cfCredentialsId: 'cfCredentialsId',
cfService: 'myService',
cfServiceInstanceName: 'myServiceInstanceName',
cfServicePlan: 'myPlan',
cfCreateServiceConfig: 'createServiceConfig.json',
cfServiceTags: 'list, of, tags',
script: this,
)
-
Multiple Service Creation in Cloud Foundry example with manifest file in Jenkinsfile
The following example shows the option to create multiple Services in Cloud Foundry. It makes use of the Cloud Foundry Create-Service-Push Plugin. This is described in above Prerequisites, please check this section for further information regarding its usage. This plugin enables this step to create multiple Cloud Foundry Services in one step.
It requires a dedicated YAML file, e.g. manifest.yml
, that contains all the information for creating the services, including their names, service plan and the service broker.
Such a manifest.yml
file needs to have the following structure, e.g. for creating three mongoDB Services with the Service Plan v4.0-dev:
---
create-services:
- name: "testDatabase1"
broker: "mongodb"
plan: "v4.0-dev"
- name: "testDatabase2"
broker: "mongodb"
plan: "v4.0-dev"
- name: "testDatabase3"
broker: "mongodb"
plan: "v4.0-dev"
The path of the manifest.yml
config file needs to be passed as a parameter in the serviceManifest
flag.
You can store the credentials in Jenkins and use the cfCredentialsId
parameter to authenticate to Cloud Foundry.
This can be done accordingly:
cloudFoundryCreateService(
cfApiEndpoint : 'https://test.server.com',
cfOrg : 'cfOrg',
cfSpace: 'cfSpace',
cfCredentialsId: 'cfCredentialsId',
serviceManifest: 'manifest.yml',
script: this,
)
-
Multiple Service Creation in Cloud Foundry example with manifest file and variable substitution in Jenkinsfile
Additionally the Cloud Foundry Create-Service-Push Plugin offers the option to make use of variable substitution. This enables you to rename variables in the manifest.yml
dynamically. It can be done either via providing the file path to a dedicated YAML file containing the information regarding the variable substitution values in the manifestVariablesFiles
flag or via providing a String List in the manifestVariables
flag. Either ways can be achieved as seen in below examples for creating MongoDB instances.
For both ways you need to adapt the manifest.yml
file to be relevant for variable substitution. This can be done according to below example:
---
create-services:
- name: ((name1))
broker: "mongodb"
plan: "v4.0-dev"
- name: ((name2))
broker: "mongodb"
plan: "v4.0-dev"
- name: ((name3))
broker: "mongodb"
plan: "v4.0-dev"
If you chose to have a dedicated file for the variable substitution values, it needs to have the following structure of the vars.yml
file:
name1: test1
name2: test2
name3: test3
The path of the manifest.yml
config file needs to be passed as a parameter in the serviceManifest
flag as well as the path to the vars.yml
file in the manifestVariablesFiles
flag.
You can store the credentials in Jenkins and use the cfCredentialsId
parameter to authenticate to Cloud Foundry.
This can be done accordingly:
cloudFoundryCreateService(
cfApiEndpoint : 'https://test.server.com',
cfOrg : 'cfOrg',
cfSpace: 'cfSpace',
cfCredentialsId: 'cfCredentialsId',
serviceManifest: 'manifest.yml',
manifestVariablesFiles: 'vars.yml',
script: this,
)
You can also pass the values for the variable substition as a string list for the manifestVariables
flag. This needs to follow the pattern key=value.
This can be done accordingly:
cloudFoundryCreateService(
cfApiEndpoint : 'https://test.server.com',
cfOrg : 'cfOrg',
cfSpace: 'cfSpace',
cfCredentialsId: 'cfCredentialsId',
serviceManifest: 'manifest.yml',
manifestVariables: ["name1=test1","name2=test2", "name3=test3"],
script: this,
)