2022-03-25 10:45:52 +02:00
|
|
|
import groovy.transform.Field
|
|
|
|
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
|
|
@Field String METADATA_FILE = "metadata/helmExecute.yaml"
|
|
|
|
|
|
|
|
void call(Map parameters = [:]) {
|
2022-06-28 13:03:03 +02:00
|
|
|
List credentials = [
|
|
|
|
[type: 'file', id: 'kubeConfigFileCredentialsId', env: ['PIPER_kubeConfig']],
|
|
|
|
[type: 'file', id: 'dockerConfigJsonCredentialsId', env: ['PIPER_dockerConfigJSON']],
|
|
|
|
[type: 'usernamePassword', id: 'targetRepositoryCredentialsId', env: ['PIPER_targetRepositoryUser', 'PIPER_targetRepositoryPassword']],
|
|
|
|
]
|
2022-03-25 10:45:52 +02:00
|
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
|
|
|
}
|