Skip to content

jboss-eap-up-and-running/eap7-getting-started

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started with JBoss EAP 7 on OpenShift

The Application

The src/main folder contains a simple 'Hello world' style Jakarta EE application using JAX-RS.

Deploying the Quickstart

Make sure you have done all the prerequisites and selected/created a project.

Then install the Helm chart contained under charts/helm.yaml to install the application into OpenShift.

helm install eap7-getting-started -f charts/helm.yaml jboss-eap/eap74

See the Deploying with Helm section for information about when the application will be ready.

Running the application

To run the application, you can access it through its OpenShift route:

echo https://$(oc get route eap7-getting-started --template='{{ .spec.host }}')

If you use this URL, you will see the welcome page of the application.

Explaining the application configuration

This application is extremely simple, so apart from the standard information in Introduction to Helm Charts, ./charts/helm.yaml contains no additional information.