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

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


The following commit(s) were added to refs/heads/main by this push:
     new ca5a4938 kogito-serverless-operator-343: Move workflows execution JDK 
to java17 (#344)
ca5a4938 is described below

commit ca5a493873e34a65ac3bae1ef14429c76e521b83
Author: Walter Medvedeo <[email protected]>
AuthorDate: Tue Jan 9 16:55:52 2024 +0100

    kogito-serverless-operator-343: Move workflows execution JDK to java17 
(#344)
---
 .../manifests/logic-operator-rhel8-builder-config_v1_configmap.yaml     | 2 +-
 bundle/manifests/sonataflow-operator-builder-config_v1_configmap.yaml   | 2 +-
 config/manager/osl/sonataflow_builder_dockerfile.yaml                   | 2 +-
 config/manager/sonataflow_builder_dockerfile.yaml                       | 2 +-
 container-builder/builder/kubernetes/testdata/Dockerfile                | 2 +-
 container-builder/examples/dockerfiles/SonataFlow.dockerfile            | 2 +-
 operator.yaml                                                           | 2 +-
 test/builder/Dockerfile                                                 | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/bundle.osl/manifests/logic-operator-rhel8-builder-config_v1_configmap.yaml 
b/bundle.osl/manifests/logic-operator-rhel8-builder-config_v1_configmap.yaml
index 1d188824..f85824f0 100644
--- a/bundle.osl/manifests/logic-operator-rhel8-builder-config_v1_configmap.yaml
+++ b/bundle.osl/manifests/logic-operator-rhel8-builder-config_v1_configmap.yaml
@@ -8,7 +8,7 @@ data:
     CLI add extension command\nARG QUARKUS_ADD_EXTENSION_ARGS\n  \n# Copy from 
build
     context to skeleton resources project\nCOPY --chmod=644 * 
./resources/\n\nRUN
     /home/kogito/launch/build-app.sh ./resources\n  
\n#=============================\n#
-    Runtime Run\n#=============================\nFROM 
registry.access.redhat.com/ubi8/openjdk-11:latest\n\nENV
+    Runtime Run\n#=============================\nFROM 
registry.access.redhat.com/ubi8/openjdk-17:latest\n\nENV
     LANG='en_US.UTF-8' LANGUAGE='en_US:en'\n  \n# We make four distinct layers 
so
     if there are application changes the library layers can be re-used\nCOPY 
--from=builder
     --chown=185 
/home/kogito/serverless-workflow-project/target/quarkus-app/lib/ 
/deployments/lib/\nCOPY
diff --git 
a/bundle/manifests/sonataflow-operator-builder-config_v1_configmap.yaml 
b/bundle/manifests/sonataflow-operator-builder-config_v1_configmap.yaml
index 1ca8c6b3..6f38c32f 100644
--- a/bundle/manifests/sonataflow-operator-builder-config_v1_configmap.yaml
+++ b/bundle/manifests/sonataflow-operator-builder-config_v1_configmap.yaml
@@ -8,7 +8,7 @@ data:
     add extension command\nARG QUARKUS_ADD_EXTENSION_ARGS\n\n# Copy from build 
context
     to skeleton resources project\nCOPY --chown=1001 . ./resources\n\nRUN 
/home/kogito/launch/build-app.sh
     ./resources\n  \n#=============================\n# Runtime 
Run\n#=============================\nFROM
-    registry.access.redhat.com/ubi8/openjdk-11:latest\n\nENV 
LANG='en_US.UTF-8' LANGUAGE='en_US:en'\n
+    registry.access.redhat.com/ubi8/openjdk-17:latest\n\nENV 
LANG='en_US.UTF-8' LANGUAGE='en_US:en'\n
     \ \n# We make four distinct layers so if there are application changes the 
library
     layers can be re-used\nCOPY --from=builder --chown=185 
/home/kogito/serverless-workflow-project/target/quarkus-app/lib/
     /deployments/lib/\nCOPY --from=builder --chown=185 
/home/kogito/serverless-workflow-project/target/quarkus-app/*.jar
diff --git a/config/manager/osl/sonataflow_builder_dockerfile.yaml 
b/config/manager/osl/sonataflow_builder_dockerfile.yaml
index 02b29a22..01a3e443 100644
--- a/config/manager/osl/sonataflow_builder_dockerfile.yaml
+++ b/config/manager/osl/sonataflow_builder_dockerfile.yaml
@@ -14,7 +14,7 @@ RUN /home/kogito/launch/build-app.sh ./resources
 #=============================
 # Runtime Run
 #=============================
-FROM registry.access.redhat.com/ubi8/openjdk-11:latest
+FROM registry.access.redhat.com/ubi8/openjdk-17:latest
 
 ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en'
   
diff --git a/config/manager/sonataflow_builder_dockerfile.yaml 
b/config/manager/sonataflow_builder_dockerfile.yaml
index ba41306b..398f52e8 100644
--- a/config/manager/sonataflow_builder_dockerfile.yaml
+++ b/config/manager/sonataflow_builder_dockerfile.yaml
@@ -14,7 +14,7 @@ RUN /home/kogito/launch/build-app.sh ./resources
 #=============================
 # Runtime Run
 #=============================
-FROM registry.access.redhat.com/ubi8/openjdk-11:latest
+FROM registry.access.redhat.com/ubi8/openjdk-17:latest
 
 ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en'
   
diff --git a/container-builder/builder/kubernetes/testdata/Dockerfile 
b/container-builder/builder/kubernetes/testdata/Dockerfile
index 3f89841f..9678e7a1 100644
--- a/container-builder/builder/kubernetes/testdata/Dockerfile
+++ b/container-builder/builder/kubernetes/testdata/Dockerfile
@@ -32,7 +32,7 @@ RUN ${MAVEN_HOME}/bin/mvn -U -B ${MAVEN_ARGS_APPEND} -s 
${MAVEN_SETTINGS_PATH} c
 #=============================
 # Runtime Run
 #=============================
-FROM registry.access.redhat.com/ubi8/openjdk-11:1.11
+FROM registry.access.redhat.com/ubi8/openjdk-17:1.18
 
 ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en'
 
diff --git a/container-builder/examples/dockerfiles/SonataFlow.dockerfile 
b/container-builder/examples/dockerfiles/SonataFlow.dockerfile
index feefeb22..2ed1df71 100644
--- a/container-builder/examples/dockerfiles/SonataFlow.dockerfile
+++ b/container-builder/examples/dockerfiles/SonataFlow.dockerfile
@@ -30,7 +30,7 @@ RUN /home/kogito/launch/build-app.sh ./resources
 #=============================
 # Runtime Run
 #=============================
-FROM registry.access.redhat.com/ubi8/openjdk-11-runtime:latest
+FROM registry.access.redhat.com/ubi8/openjdk-17-runtime:latest
 
 ARG QUARKUS_LAUNCH_DEVMODE=false
 
diff --git a/operator.yaml b/operator.yaml
index 028d8ec0..e5b00cfa 100644
--- a/operator.yaml
+++ b/operator.yaml
@@ -26437,7 +26437,7 @@ data:
     add extension command\nARG QUARKUS_ADD_EXTENSION_ARGS\n\n# Copy from build 
context
     to skeleton resources project\nCOPY --chown=1001 . ./resources\n\nRUN 
/home/kogito/launch/build-app.sh
     ./resources\n  \n#=============================\n# Runtime 
Run\n#=============================\nFROM
-    registry.access.redhat.com/ubi8/openjdk-11:latest\n\nENV 
LANG='en_US.UTF-8' LANGUAGE='en_US:en'\n
+    registry.access.redhat.com/ubi8/openjdk-17:latest\n\nENV 
LANG='en_US.UTF-8' LANGUAGE='en_US:en'\n
     \ \n# We make four distinct layers so if there are application changes the 
library
     layers can be re-used\nCOPY --from=builder --chown=185 
/home/kogito/serverless-workflow-project/target/quarkus-app/lib/
     /deployments/lib/\nCOPY --from=builder --chown=185 
/home/kogito/serverless-workflow-project/target/quarkus-app/*.jar
diff --git a/test/builder/Dockerfile b/test/builder/Dockerfile
index e2450a4b..ca1954ef 100644
--- a/test/builder/Dockerfile
+++ b/test/builder/Dockerfile
@@ -32,7 +32,7 @@ RUN ${MAVEN_HOME}/bin/mvn -U -B ${MAVEN_ARGS_APPEND} -s 
${MAVEN_SETTINGS_PATH} c
 #=============================
 # Runtime Run
 #=============================
-FROM registry.access.redhat.com/ubi8/openjdk-11:1.11
+FROM registry.access.redhat.com/ubi8/openjdk-17:1.18
 
 ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en'
 


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

Reply via email to