Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

How to use the new OpenShift quick starts to deploy JBoss EAP

May 15, 2023
Philip Hayes
Related topics:
Helm
Related products:
Red Hat JBoss Enterprise Application PlatformRed Hat OpenShiftRed Hat OpenShift Container Platform

Share:

    In the articles, How to migrate your Java applications to Red Hat OpenShift and How to deploy JBoss EAP applications with OpenShift Pipelines, we covered the technologies utilized to build and deploy Red Hat JBoss Enterprise Application Platform images on OpenShift. These technologies include Source to Image (S2I), Helm charts, build configs, deployment configs, tekton pipelines, and ingress routes. While these technologies will be familiar to developers experienced with Kubernetes and containerization, a Jakarta EE developer coming from a traditional JBoss EAP background may be new to these tools.

    To help bridge the gap between traditional EAP deployments and OpenShift deployments, Red Hat has created a series of OpenShift quick starts focused on the tools and techniques involved with building and deploying JBoss EAP images on OpenShift. These quick starts provide step-by-step instructions for deploying a JBoss EAP application on OpenShift. They will also explain what is happening at each stage and how to validate each stage you complete.

    The first quick start released is a simple JBoss EAP "Hello World" application deployment using Helm charts. This quick start includes the following tasks:

    • Creating a JBoss EAP 7 application with Helm.
    • Viewing the Helm release.
    • Viewing the associated code.
    • Viewing the build status.
    • Viewing the pod status.
    • Running the JBoss EAP 7 application.

    We will demonstrate quick start in this article.

    Prerequisites

    • OpenShift CLI tool (optional)
    • Openshift 4.x cluster with cluster admin permissions

    Note: The quick start will be available with OpenShift 4.14.  In the mean time, you can add it by following the instructions below.

    Install the quick start using OpenShift CLI

    To download the OpenShift CLI, follow these steps:

    1. Click on the ? in the top right hand corner of the OpenShift UI.
    2. Select Command line tools.
    3. Download and install the command line client for your OS.
    4. Log in as cluster admin.
    5. Run the following command:
    oc apply -f https://raw.githubusercontent.com/jboss-eap-up-and-running/openshift-console-quickstarts/main/jboss-eap7-with-helm.yaml

    Install the quick start using the OpenShift UI

    After logging in to OpenShift as cluster administrator, follow these steps:

    1. To create the quick start via the OpenShift UI, click on the + icon in the top right hand corner of the UI.
    2. Paste the contents of this link: https://raw.githubusercontent.com/jboss-eap-up-and-running/openshift-console-quickstarts/main/jboss-eap7-with-helm.yaml
    3. Click on Create to create the quick start.

    Deploy JBoss EAP 7 using quick start

    In the OpenShift developer UI, click +Add and select View all quick starts.

    In the search field, enter eap.

    When you see the Get started with JBoss EAP 7 using a Helm Chart quick start listed (Figure 1), select this quick start to begin.

    The get started with JBoss EAP 7 using a Helm Chart option is shown in Red Hat OpenShift UI.
    Figure 1: The JBoss EAP quick start page.

    When a panel opens with instructions, click Start to begin (Figure 2).

    In this initial panel, you will follow the steps required to locate and install the JBoss EAP 7.4 Helm chart. You don't need to change any default settings presented by the Helm configuration.

    Once you click Install, the user interface will switch to the Topology view and show the Release notes from the Helm chart, as shown in Figure 2.

    A panel shows instructions to build and deploy a JBoss EAP application on OpenShift using Helm charts.
    Figure 2: The steps to build and deploy a JBoss EAP application on OpenShift using Helm charts.

    Click Next to open the Check your work panel, as shown in Figure 3. This panel contains questions about the results. It gives you the opportunity to review your work and confirm that you successfully completed the task before advancing to the next task in the quick start.

    The quick start "Check your work" panel.
    Figure 3: The quick start "Check your work" panel, confirming Helm deployed.

    This is where the quick start helps you understand what was created by the Helm chart. You will be able to identify the Helm release and the eap74 deployment. Click Yes and then click Next to move onto the next section.

    This section will guide you through locating the Helm release we just installed. You will be able to view the list of resources (Figure 4).

    A list of Helm chart resources.
    Figure 4: View a list of Helm chart resources.

    It will prompt you to verify the results again. Validate that you can see the deployed label next to the Helm release and click Next to move to the next section.

    You will now be guided through viewing the source code associated with the quick start. There is another verification to confirm that you have successfully completed this step.

    Move on to the next section, which describes how the Helm release created two builds. The build process for JBoss EAP applications utilizes two builds, an artifact build and a runtime build. The artifact build performs a maven build to create the application artifact. The runtime build deploys the output of this build to an instance of EAP. This results in a much smaller footprint for the runtime image containing the minimum file necessary to run the application.

    Once you have completed this check, click Yes to move on to the next check where you will be directed back to view the topology and the running pod status. Follow the instructions to check the status of the pod and complete the check.

    Finally, you will be shown how to open the application by clicking on the external URL. Once you have completed this stage, you can complete the final check.

    Viewing the external URL will open up a new browser window shown in Figure 5:

    The screen shows successful deployment of JBoss EAP application deployment on OpenShift.
    Figure 5: This page shows successful deployment of JBoss EAP application deployment on OpenShift.

    You have now completed the quick start. You should see the completed stages of the quick start listed, as shown in Figure 6:

    The completed stages of the quick start are listed.
    Figure 6: Quick start final checks listed.

    The new quick starts simplify JBoss EAP deployment

    In this article, we demonstrated the new JBoss EAP quick start, designed to guide developers familiar with traditional JBoss EAP deployments through the steps to build and deploy application images on OpenShift. The quick start helps developers understand how to use Helm to create the build configs, deployment configs, and external routes required to build and deploy JBoss EAP applications on OpenShift. This quick start uses a sample Git repo with a sample EAP application. Developers will be able to use the same approach to use their own sample applications.

    Last updated: October 31, 2023

    Related Posts

    • How to migrate apps from JBoss EAP 7.x to JBoss EAP 8.0

    • Where can I download the OpenShift command line tool?

    • How Helm and JKube simplify Kubernetes management, part 1

    • 3 ways to install a database with Helm charts

    Recent Posts

    • Supercharging AI isolation: microVMs with RamaLama & libkrun

    • Simplify multi-VPC connectivity with amazon.aws 9.0.0

    • How HaProxy router settings affect middleware applications

    • Fly Eagle(3) fly: Faster inference with vLLM & speculative decoding

    • Kafka Monthly Digest: June 2025

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2025 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue