mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
111e4de8c3
* kanikoExecute golang version * update entrypoint * update entrypoint * update entrypoint * update entrypoint * update entrypoint * add command * include PR feedback * remove trailing spaces * remove defaults for certificates * Update generated file
10 lines
349 B
Groovy
10 lines
349 B
Groovy
import groovy.transform.Field
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String METADATA_FILE = 'metadata/kaniko.yaml'
|
|
|
|
void call(Map parameters = [:]) {
|
|
List credentials = [[type: 'file', id: 'dockerConfigJsonCredentialsId', env: ['PIPER_dockerConfigJSON']]]
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
|
}
|