Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kie-issues#1213: configure kogito-ci-build image from dockerhub #1198

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .ci/jenkins/config/branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ maven:
creds_id: TO_DEFINE
cloud:
image:
registry_credentials: quay_kiegroup_registry_token
registry: quay.io
namespace: kiegroup
registry_credentials: dockerhub_apache_kie_registry_token
registry: docker.io
namespace: apache
latest_git_branch: main
jenkins:
email_creds_id: KOGITO_CI_NOTIFICATION_EMAILS
Expand All @@ -92,7 +92,7 @@ jenkins:
# At some point, this image will need to be changed when a release branch is created
# but we need to make sure the image exists first ... simple tag before setting up the branch ?
# See https://github.com/kiegroup/kie-issues/issues/551
image: quay.io/kiegroup/kogito-ci-build:main-latest
image: docker.io/apache/incubator-kie-kogito-ci-build:main-latest
args: --privileged --group-add docker
default_tools:
jdk: jdk_17_latest
Expand Down
2 changes: 1 addition & 1 deletion dsl/scripts/pr_check.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dockerArgs = [
] + dockerGroups.collect { group -> "--group-add ${group}" }

void launch() {
String builderImage = 'quay.io/kiegroup/kogito-ci-build:main-latest'
String builderImage = 'docker.io/apache/incubator-kie-kogito-ci-build:main-latest'
sh "docker rmi -f ${builderImage} || true" // Remove before launching

try {
Expand Down
Loading