1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-11-28 08:49:44 +02:00
sap-jenkins-library/vars/kubernetesDeploy.groovy

16 lines
762 B
Groovy
Raw Permalink Normal View History

import groovy.transform.Field
@Field String STEP_NAME = getClass().getName()
@Field String METADATA_FILE = 'metadata/kubernetesDeploy.yaml'
void call(Map parameters = [:]) {
List credentials = [
[type: 'file', id: 'kubeConfigFileCredentialsId', env: ['PIPER_kubeConfig']],
[type: 'file', id: 'dockerConfigJsonCredentialsId', env: ['PIPER_dockerConfigJSON']],
[type: 'token', id: 'kubeTokenCredentialsId', env: ['PIPER_kubeToken']],
[type: 'usernamePassword', id: 'dockerCredentialsId', env: ['PIPER_containerRegistryUser', 'PIPER_containerRegistryPassword']],
[type: 'token', id: 'githubTokenCredentialsId', env: ['PIPER_githubToken']],
]
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
}