This is an automated email from the ASF dual-hosted git repository.

tiagobento pushed a commit to branch main
in repository 
https://gitbox.apache.org/repos/asf/incubator-kie-kogito-runtimes.git


The following commit(s) were added to refs/heads/main by this push:
     new 030a82acf4 Fix kie-issues #1217 - Replace quay.io with docker.io 
(#3525)
030a82acf4 is described below

commit 030a82acf41f72f25b78392e0a12596f518a5ecc
Author: Ricardo Zanini <[email protected]>
AuthorDate: Wed May 22 12:23:43 2024 -0300

    Fix kie-issues #1217 - Replace quay.io with docker.io (#3525)
    
    * Fix kie-issues #1217 - Replace quay.io with docker.io
    
    Signed-off-by: Ricardo Zanini <[email protected]>
    
    * Replace outdated image with bananas :banana:
    
    Signed-off-by: Ricardo Zanini <[email protected]>
    
    ---------
    
    Signed-off-by: Ricardo Zanini <[email protected]>
---
 .ci/jenkins/Jenkinsfile.deploy                                      | 2 +-
 .ci/jenkins/Jenkinsfile.setup-branch                                | 6 +++---
 .../src/test/resources/deployment/deployment-no-service.yaml        | 2 +-
 .../runtime/src/test/resources/deployment/deployment.yaml           | 2 +-
 .../src/test/resources/deployment/pod-deployment-no-service.yaml    | 4 ++--
 .../resources/deployment/replica-set-deployment-no-service.yaml     | 2 +-
 .../resources/deploymentConfig/deployment-config-no-service.yaml    | 2 +-
 .../src/test/resources/deploymentConfig/deployment-config.yaml      | 2 +-
 .../deploymentConfig/pod-deployment-config-no-service.yaml          | 4 ++--
 .../deploymentConfig/replication-controller-dc-no-svc.yaml          | 4 ++--
 .../src/test/resources/pod/pod-no-service-custom-port-name.yaml     | 2 +-
 .../runtime/src/test/resources/pod/pod-no-service.yaml              | 4 ++--
 .../src/test/resources/statefulset/statefulset-no-service.yaml      | 2 +-
 .../src/test/resources/statefulset/statefulset-pod-no-service.yaml  | 4 ++--
 .../runtime/src/test/resources/statefulset/statefulset.yaml         | 2 +-
 .../deployment/src/main/resources/application.properties            | 2 +-
 .../integration-tests/src/test/resources/application.properties     | 2 +-
 .../kogito-quarkus-workflow-common-deployment/pom.xml               | 2 +-
 18 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/.ci/jenkins/Jenkinsfile.deploy b/.ci/jenkins/Jenkinsfile.deploy
index 795ed5f8a1..316c7271cd 100644
--- a/.ci/jenkins/Jenkinsfile.deploy
+++ b/.ci/jenkins/Jenkinsfile.deploy
@@ -305,5 +305,5 @@ String getWorkflowCommonDeploymentPath() {
 }
 
 String getDataIndexEphemeralReleaseImage() {
-    return 
"quay.io/kiegroup/kogito-data-index-ephemeral:${util.getMajorMinorVersion(getProjectVersion())}"
+    return 
"docker.io/apache/incubator-kie-kogito-data-index-ephemeral:${util.getMajorMinorVersion(getProjectVersion())}"
 }
diff --git a/.ci/jenkins/Jenkinsfile.setup-branch 
b/.ci/jenkins/Jenkinsfile.setup-branch
index 59e32b42f7..904887fa44 100644
--- a/.ci/jenkins/Jenkinsfile.setup-branch
+++ b/.ci/jenkins/Jenkinsfile.setup-branch
@@ -23,7 +23,7 @@ import org.jenkinsci.plugins.workflow.libs.Library
 import org.kie.jenkins.MavenCommand
 
 droolsRepo = 'incubator-kie-drools'
-dataIndexEphemeralImageName = 'quay.io/kiegroup/kogito-data-index-ephemeral'
+dataIndexEphemeralImageName = 
'docker.io/apache/incubator-kie-kogito-data-index-ephemeral'
 
 pipeline {
     agent {
@@ -213,11 +213,11 @@ String getWorkflowCommonDeploymentRelativePath() {
 
 String getDataIndexEphemeralImage() {
     if (isMainBranch()) {
-        return "${dataIndexEphemeralImageName}-nightly:latest"
+        return "${dataIndexEphemeralImageName}:main"
     }
     String version = getKogitoVersion()
     if (version.endsWith('-SNAPSHOT')) {
-        return 
"${dataIndexEphemeralImageName}-nightly:${util.getMajorMinorVersion(version)}"
+        return 
"${dataIndexEphemeralImageName}:${util.getMajorMinorVersion(version)}"
     }
     return 
"${dataIndexEphemeralImageName}:${util.getMajorMinorVersion(version)}"
 }
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/deployment-no-service.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/deployment-no-service.yaml
index 7a12392bc7..8a81464caf 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/deployment-no-service.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/deployment-no-service.yaml
@@ -36,7 +36,7 @@ spec:
     spec:
       containers:
       - name: example-deployment-no-service
-        image: quay.io/kiegroup/process-quarkus-example:latest
+        image: docker.io/namespace/bananas:latest
         imagePullPolicy: IfNotPresent
         ports:
         - containerPort: 8080
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/deployment.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/deployment.yaml
index 257ad459e2..7c08251818 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/deployment.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/deployment.yaml
@@ -35,7 +35,7 @@ spec:
     spec:
       containers:
       - name: example-deployment-with-service
-        image: quay.io/kiegroup/process-quarkus-example:latest
+        image: docker.io/namespace/bananas:latest
         imagePullPolicy: IfNotPresent
         ports:
         - containerPort: 8080
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/pod-deployment-no-service.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/pod-deployment-no-service.yaml
index d73c84577c..cc712c87bc 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/pod-deployment-no-service.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/pod-deployment-no-service.yaml
@@ -57,7 +57,7 @@ spec:
       defaultMode: 420
   containers:
   - name: example-deployment-no-service
-    image: quay.io/kiegroup/process-quarkus-example:latest
+    image: docker.io/namespace/bananas:latest
     ports:
     - containerPort: 8080
       protocol: TCP
@@ -121,6 +121,6 @@ status:
     lastState: {}
     ready: true
     restartCount: 0
-    image: quay.io/kiegroup/process-quarkus-example:latest
+    image: docker.io/namespace/bananas:latest
     started: true
   qosClass: BestEffort
\ No newline at end of file
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/replica-set-deployment-no-service.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/replica-set-deployment-no-service.yaml
index 7154aadfa8..98176f5fdf 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/replica-set-deployment-no-service.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deployment/replica-set-deployment-no-service.yaml
@@ -46,7 +46,7 @@ spec:
     spec:
       containers:
       - name: example-deployment-no-service
-        image: quay.io/kiegroup/process-quarkus-example:latest
+        image: docker.io/namespace/bananas:latest
         ports:
         - containerPort: 8080
           protocol: TCP
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/deployment-config-no-service.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/deployment-config-no-service.yaml
index 0c40e9631f..e2d139a7cf 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/deployment-config-no-service.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/deployment-config-no-service.yaml
@@ -34,7 +34,7 @@ spec:
     spec:
       containers:
       - name: example-dc-no-service
-        image: quay.io/kiegroup/process-quarkus-example:latest
+        image: docker.io/namespace/bananas:latest
         ports:
         - containerPort: 8080
           name: web
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/deployment-config.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/deployment-config.yaml
index 87160fe656..d85881657f 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/deployment-config.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/deployment-config.yaml
@@ -34,7 +34,7 @@ spec:
     spec:
       containers:
       - name: example-dc-with-service
-        image: quay.io/kiegroup/process-quarkus-example:latest
+        image: docker.io/namespace/bananas:latest
         ports:
         - containerPort: 8080
           name: http
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/pod-deployment-config-no-service.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/pod-deployment-config-no-service.yaml
index db0ccff0fc..98ec421829 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/pod-deployment-config-no-service.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/pod-deployment-config-no-service.yaml
@@ -81,7 +81,7 @@ spec:
       readOnly: true
       mountPath: /var/run/secrets/kubernetes.io/serviceaccount
     terminationMessagePolicy: File
-    image: 'quay.io/kiegroup/process-quarkus-example:latest'
+    image: 'docker.io/namespace/bananas:latest'
   serviceAccount: default
   volumes:
   - name: kube-api-access-mg9n9
@@ -149,5 +149,5 @@ status:
     state:
       running:
         startedAt: '2022-08-22T17:30:29Z'
-    image: 'quay.io/kiegroup/process-quarkus-example:latest'
+    image: 'docker.io/namespace/bananas:latest'
   qosClass: BestEffort
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/replication-controller-dc-no-svc.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/replication-controller-dc-no-svc.yaml
index b4059d87fc..9960f0eb25 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/replication-controller-dc-no-svc.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/deploymentConfig/replication-controller-dc-no-svc.yaml
@@ -26,7 +26,7 @@ metadata:
     openshift.io/deployment.status-reason: config change
     openshift.io/deployment.replicas: '1'
     openshift.io/encoded-deployment-config: >
-      
{"kind":"DeploymentConfig","apiVersion":"apps.openshift.io/v1","metadata":{"name":"example-dc-no-service","namespace":"serverless-workflow-greeting-quarkus","uid":"a01d76e9-6b3a-48bf-8224-acb9de3c4ca0","resourceVersion":"1127454401","generation":1,"creationTimestamp":"2022-08-22T17:30:09Z","labels":{"app":"example-dc-no-service"},"managedFields":[{"manager":"Mozilla","operation":"Update","apiVersion":"apps.openshift.io/v1","time":"2022-08-22T17:30:09Z","fieldsType":"FieldsV1","fiel
 [...]
+      
{"kind":"DeploymentConfig","apiVersion":"apps.openshift.io/v1","metadata":{"name":"example-dc-no-service","namespace":"serverless-workflow-greeting-quarkus","uid":"a01d76e9-6b3a-48bf-8224-acb9de3c4ca0","resourceVersion":"1127454401","generation":1,"creationTimestamp":"2022-08-22T17:30:09Z","labels":{"app":"example-dc-no-service"},"managedFields":[{"manager":"Mozilla","operation":"Update","apiVersion":"apps.openshift.io/v1","time":"2022-08-22T17:30:09Z","fieldsType":"FieldsV1","fiel
 [...]
       change","causes":[{"type":"ConfigChange"}]}}}
     openshift.io/deployer-pod.name: example-dc-no-service-1-deploy
   resourceVersion: '1127455589'
@@ -64,7 +64,7 @@ spec:
     spec:
       containers:
       - name: example-dc-no-service
-        image: 'quay.io/kiegroup/process-quarkus-example:latest'
+        image: 'docker.io/namespace/bananas:latest'
         ports:
         - name: http
           containerPort: 8080
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/pod/pod-no-service-custom-port-name.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/pod/pod-no-service-custom-port-name.yaml
index af8e9c0f1c..5b655c9457 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/pod/pod-no-service-custom-port-name.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/pod/pod-no-service-custom-port-name.yaml
@@ -26,7 +26,7 @@ metadata:
 spec:
   containers:
   - name: pod-no-service-custom-port
-    image: quay.io/kiegroup/process-quarkus-example:latest
+    image: docker.io/namespace/bananas:latest
     imagePullPolicy: Never
     ports:
     - name: http
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/pod/pod-no-service.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/pod/pod-no-service.yaml
index 9b7ec8882d..9addea7e0f 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/pod/pod-no-service.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/pod/pod-no-service.yaml
@@ -26,7 +26,7 @@ metadata:
 spec:
   containers:
   - name: process-quarkus-example-pod-no-service
-    image: quay.io/kiegroup/process-quarkus-example:latest
+    image: docker.io/namespace/bananas:latest
     imagePullPolicy: Never
     ports:
     - name: http
@@ -64,5 +64,5 @@ status:
     lastState: {}
     ready: true
     restartCount: 0
-    image: quay.io/kiegroup/process-quarkus-example:latest
+    image: docker.io/namespace/bananas:latest
     started: true
\ No newline at end of file
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset-no-service.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset-no-service.yaml
index 1e2e930fb8..93e089a2e2 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset-no-service.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset-no-service.yaml
@@ -36,7 +36,7 @@ spec:
     spec:
       containers:
       - name: process-quarkus-example-statefulset-no-service
-        image: quay.io/kiegroup/process-quarkus-example:latest
+        image: docker.io/namespace/bananas:latest
         ports:
         - containerPort: 8080
           name: http
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset-pod-no-service.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset-pod-no-service.yaml
index 54af981bd0..1e1e095953 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset-pod-no-service.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset-pod-no-service.yaml
@@ -59,7 +59,7 @@ spec:
       defaultMode: 420
   containers:
   - name: example-statefulset-without-service
-    image: quay.io/kiegroup/process-quarkus-example:latest
+    image: docker.io/namespace/bananas:latest
     ports:
     - name: http
       containerPort: 8080
@@ -126,6 +126,6 @@ status:
     lastState: {}
     ready: true
     restartCount: 0
-    image: quay.io/kiegroup/process-quarkus-example:latest
+    image: docker.io/namespace/bananas:latest
     started: true
   qosClass: BestEffort
\ No newline at end of file
diff --git 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset.yaml
 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset.yaml
index a05be4f7e1..97c862db52 100644
--- 
a/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset.yaml
+++ 
b/quarkus/addons/fabric8-kubernetes-service-catalog/runtime/src/test/resources/statefulset/statefulset.yaml
@@ -36,7 +36,7 @@ spec:
     spec:
       containers:
       - name: example-statefulset-with-service
-        image: quay.io/kiegroup/process-quarkus-example:latest
+        image: docker.io/namespace/bananas:latest
         imagePullPolicy: IfNotPresent
         ports:
         - containerPort: 8080
diff --git 
a/quarkus/addons/tracing-decision/deployment/src/main/resources/application.properties
 
b/quarkus/addons/tracing-decision/deployment/src/main/resources/application.properties
index c9560946f8..f066e17589 100644
--- 
a/quarkus/addons/tracing-decision/deployment/src/main/resources/application.properties
+++ 
b/quarkus/addons/tracing-decision/deployment/src/main/resources/application.properties
@@ -17,4 +17,4 @@
 # under the License.
 #
 
-quarkus.kogito.dev-services-trusty.image-name=quay.io/kiegroup/kogito-trusty-postgresql:${version.org.kie.kogito.trusty-service-postgresql}
+quarkus.kogito.dev-services-trusty.image-name=docker.io/apache/incubator-kie-kogito-trusty-postgresql:${version.org.kie.kogito.trusty-service-postgresql}
diff --git 
a/quarkus/addons/tracing-decision/integration-tests/src/test/resources/application.properties
 
b/quarkus/addons/tracing-decision/integration-tests/src/test/resources/application.properties
index 8a21528aab..2483412d5d 100644
--- 
a/quarkus/addons/tracing-decision/integration-tests/src/test/resources/application.properties
+++ 
b/quarkus/addons/tracing-decision/integration-tests/src/test/resources/application.properties
@@ -31,6 +31,6 @@ 
mp.messaging.outgoing.kogito-tracing-model.topic=kogito-tracing-model
 
mp.messaging.outgoing.kogito-tracing-model.value.serializer=org.apache.kafka.common.serialization.StringSerializer
 mp.messaging.outgoing.kogito-tracing-model.auto.offset.reset=earliest
 
-quarkus.kogito.dev-services-trusty.image-name=quay.io/kiegroup/kogito-trusty-postgresql:latest
+quarkus.kogito.dev-services-trusty.image-name=docker.io/apache/incubator-kie-kogito-trusty-postgresql:latest
 
#quarkus.kogito.dev-services-trusty.image-name=org.kie.kogito/trusty-service-postgresql:2.0.0-SNAPSHOT
 quarkus.kogito.dev-services-trusty.port-used-by-test=-1
diff --git 
a/quarkus/extensions/kogito-quarkus-workflow-extension-common/kogito-quarkus-workflow-common-deployment/pom.xml
 
b/quarkus/extensions/kogito-quarkus-workflow-extension-common/kogito-quarkus-workflow-common-deployment/pom.xml
index 02057a9fa6..a215a838e8 100644
--- 
a/quarkus/extensions/kogito-quarkus-workflow-extension-common/kogito-quarkus-workflow-common-deployment/pom.xml
+++ 
b/quarkus/extensions/kogito-quarkus-workflow-extension-common/kogito-quarkus-workflow-common-deployment/pom.xml
@@ -33,7 +33,7 @@
   <name>Kogito :: Quarkus Workflow Extension Common :: Deployment</name>
 
   <properties>
-    
<data-index-ephemeral.image>quay.io/kiegroup/kogito-data-index-ephemeral-nightly:latest</data-index-ephemeral.image>
+    
<data-index-ephemeral.image>docker.io/apache/incubator-kie-kogito-data-index-ephemeral:main</data-index-ephemeral.image>
     
<java.module.name>org.kie.kogito.quarkus.workflow.deployment</java.module.name>
   </properties>
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to