Deploying bundles to JBoss Fuse

JBoss Fuse can hot deploy your OSGi bundles automatically when you drop the JAR files in the InstallDir/deploy directory. When you copy a JAR file in this directory, it will be automatically installed in the runtime and also started. Just the same, if you update or delete the JARs, and the changes are handled automatically.

Read more

Getting started with Fuse 7 on OpenShift using Code Ready Studio

Red Hat Fuse on OpenShift lets you to deploy Fuse applications on the top of OpenShift Container Platform. In this tutorial we will cover how to deploy a Fuse application on OpenShift using Code Ready Studio to quickly generate an example application.

Pre-requisites:

You need to install the Fuse Imagestreams and Templates on the OpenShift 4.x server. ImageStrams is an OpenShift API object that represents single virtual view of related images.

You can refer to script for installing image streams and templates: https://github.com/rahmed-rh/fuse_on_OCP_7.5/blob/master/scripts/install_fis_7.5.sh

(Please note that to install Fuse Imagestreams and Templates, you must have the administrator role for the OpenShift project.)

Read more

How to build and deploy Fuse 7 applications on OpenShift with Maven

In this tutorial we will learn how to create and deploy a Red Hat Fuse application as Spring Boot application on OpenShift using just the Maven command line.

Before getting started, you need to complete the following steps:

  • Install the Fuse Imagestreams and Templates on the OpenShift 4.x server. ImageStrams is an OpenShift API object that represents single virtual view of related images. (Please note that to install Fuse Imagestreams and Templates, you must have the administrator role for the OpenShift project.). You can refer to script for installing image streams and templates: https://github.com/rahmed-rh/fuse_on_OCP_7.5/blob/master/scripts/install_fis_7.5.sh
  • Make sure you have configured the Maven repository list so that you can reach Fuse archetype. (An example of settings.xml is available here)

Read more