tet123/jenkins-jobs/job-dsl/release/deploy_debezium_tool_images.groovy

37 lines
1.1 KiB
Groovy
Raw Normal View History

folder("release") {
description("This folder contains all jobs used by developers for upstream release and all relevant stuff")
displayName("Release")
}
pipelineJob('release/release-deploy-debezium-tool-images') {
displayName('Debezium Deploy Tool Images')
description('Build and deploy debezium tool images to the registry')
properties {
githubProjectUrl('https://github.com/debezium/container-images')
}
logRotator {
daysToKeep(7)
numToKeep(10)
}
triggers {
cron('0 0 * * 1')
}
parameters {
stringParam('MAIL_TO', 'jpechane@redhat.com')
stringParam('IMAGES_REPOSITORY', 'github.com/debezium/container-images.git', 'Repository with Debezium Dockerfiles')
stringParam('IMAGES_BRANCH', 'main', 'Branch used for images repository')
stringParam('TAG', 'latest', 'Tag used for building images')
}
definition {
cps {
script(readFileFromWorkspace('jenkins-jobs/pipelines/release/build_debezium_tool_images_pipeline.groovy'))
}
}
}