2020-09-17 11:01:19 +02:00
# ${docGenStepName}
## ${docGenDescription}
## Prerequisites
2021-06-21 17:56:12 +02:00
* The credentials to access the AAKaaS (Technical Communication User) must be stored in the Jenkins Credential Store
2021-06-17 21:28:15 +02:00
* The step needs an addon.yml containing information about the Product Version and corresponding Software Component Versions/Repositories
A detailed description of all prerequisites of the scenario and how to configure them can be found in the [Scenario Description ](https://www.project-piper.io/scenarios/abapEnvironmentAddons/ ).
2020-09-17 11:01:19 +02:00
## ${docGenParameters}
## ${docGenConfiguration}
## ${docJenkinsPluginDependencies}
## Examples
### Configuration in the config.yml
The recommended way to configure your pipeline is via the config.yml file. In this case, calling the step in the Jenkinsfile is reduced to one line:
```groovy
abapAddonAssemblyKitCheckPV script: this
```
2021-06-17 21:28:15 +02:00
If the step is to be configured individually the config.yml should look like this:
2020-09-17 11:01:19 +02:00
```yaml
steps:
abapAddonAssemblyKitCheckCVs:
abapAddonAssemblyKitCredentialsId: 'abapAddonAssemblyKitCredentialsId',
addonDescriptorFileName: 'addon.yml'
```
2021-06-17 21:28:15 +02:00
More convenient ways of configuration (e.g. on stage level) are described in the respective scenario/pipeline documentation.