Skip to content

Commit d9e4d19

Browse files
committed
[versions] Set version 7.13/1.13 for the image and use Fuse 7.12.0.GA BOM version (as base)
1 parent 2555d30 commit d9e4d19

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

README.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ $ oc new-project MY_PROJECT_NAME
101101
----
102102

103103
. Configure Red Hat Container Registry authentication (if it is not configured).
104-
Follow https://access.redhat.com/documentation/en-us/red_hat_fuse/7.10/html-single/fuse_on_openshift_guide/index#configure-container-registry[documentation].
104+
Follow https://access.redhat.com/documentation/en-us/red_hat_fuse/7.13/html-single/fuse_on_openshift_guide/index#configure-container-registry[documentation].
105105

106106
. Import base images in your newly created project (MY_PROJECT_NAME):
107107
+
108108
[source,bash,options="nowrap",subs="attributes+"]
109109
----
110-
$ oc import-image fuse-java-openshift:2.0 --from=registry.access.redhat.com/jboss-fuse-7/fuse-java-openshift:2.0 --confirm
110+
$ oc import-image fuse-java-openshift:1.13 --from=registry.redhat.io/fuse7/fuse-java-openshift:1.13 --confirm
111111
----
112112

113113
. It is assumed that a MySQL service is already running on the platform. You can deploy it using the provided deployment by executing in single-node OpenShift cluster:
@@ -132,7 +132,7 @@ $ cd my_openshift/spring-boot-camel-rest-sql
132132
+
133133
[source,bash,options="nowrap",subs="attributes+"]
134134
----
135-
$ mvn clean -DskipTests oc:deploy -Dmysql-service-username=<username> -Dmysql-service-password=<password> -Popenshift -Djkube.generator.fromMode=istag -Djkube.generator.from=MY_PROJECT_NAME/fuse-java-openshift:2.0
135+
$ mvn clean -DskipTests oc:deploy -Dmysql-service-username=<username> -Dmysql-service-password=<password> -Popenshift -Djkube.generator.fromMode=istag -Djkube.generator.from=MY_PROJECT_NAME/fuse-java-openshift:1.13
136136
----
137137
+
138138
The `username` and `password` system properties correspond to the credentials used when deploying the MySQL database service.

pom.xml

+13-4
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
<run.profiles>dev</run.profiles>
3737

3838
<!-- configure the versions you want to use here -->
39-
<fuse.bom.version>7.12.0.fuse-7_12_0-00006-redhat-00002</fuse.bom.version>
40-
<docker.image.version>1.12</docker.image.version>
39+
<fuse.bom.version>7.12.0.fuse-7_12_0-00016-redhat-00001</fuse.bom.version>
40+
<docker.image.version>1.13</docker.image.version>
4141

4242
<!-- maven plugin versions -->
4343
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
@@ -210,7 +210,7 @@
210210
</property>
211211
<property>
212212
<name>rht.prod_ver</name>
213-
<value>7.12.0</value>
213+
<value>7.13.0</value>
214214
</property>
215215
<property>
216216
<name>rht.comp</name>
@@ -234,7 +234,16 @@
234234
<jkube.generator.from>registry.redhat.io/fuse7/fuse-java-openshift-jdk11-rhel8:${docker.image.version}</jkube.generator.from>
235235
</properties>
236236
<activation>
237-
<jdk>[11,)</jdk>
237+
<jdk>[11,17)</jdk>
238+
</activation>
239+
</profile>
240+
<profile>
241+
<id>java17</id>
242+
<properties>
243+
<jkube.generator.from>registry.redhat.io/fuse7/fuse-java-openshift-jdk17-rhel8:${docker.image.version}</jkube.generator.from>
244+
</properties>
245+
<activation>
246+
<jdk>[17,)</jdk>
238247
</activation>
239248
</profile>
240249
</profiles>

0 commit comments

Comments
 (0)