From 2230d7bc2c279aa5a36c67a2e9cf19953c6040f1 Mon Sep 17 00:00:00 2001 From: jstastny-cz Date: Wed, 15 May 2024 12:00:56 +0200 Subject: [PATCH] kie-issues#1213: configure for dockerhub registry --- .ci/jenkins/config/branch.yaml | 8 ++++---- dsl/scripts/pr_check.groovy | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/jenkins/config/branch.yaml b/.ci/jenkins/config/branch.yaml index 78326a0b1..0ff634779 100644 --- a/.ci/jenkins/config/branch.yaml +++ b/.ci/jenkins/config/branch.yaml @@ -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 @@ -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 diff --git a/dsl/scripts/pr_check.groovy b/dsl/scripts/pr_check.groovy index 49ab0fef3..d3eadc077 100644 --- a/dsl/scripts/pr_check.groovy +++ b/dsl/scripts/pr_check.groovy @@ -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 {