Friends of OpenJDK Today

Jakarta EE Application Deployment to Kubernetes Cluster in Jelastic PaaS

June 16, 2021

Author(s)

  • Avatar photo
    Tetiana Fydorenchyk

    Global Product Marketing at Virtuozzo, the leader in virtualization and hyperconverged cloud platform for MSPs and CSPs. A former Vice President of Marketing in Jelastic, a multi-cloud PaaS provider serving ... Learn more

Recently, we were asked to sponsor cloud hosting of a Jakarta EE project, called Cargo Tracker. Being a member of Jakarta EE Working Group, Jelastic wanted to support the community and thus we started to run this application at one of our service providers (Scaleforce).

Cargo Tracker is created with the help of Domain-Driven Design (DDD) approach that focuses on the study of a subject area (domain) and its business processes. Regular programming stipulates writing the code paying more attention to technologies and infrastructure. Of course, these aspects are important but they are secondary compared to business itself. DDD approach helps developers to speak business language, so called Ubiquitous language.

Jelastic team deployed the Cargo Tracker application to the Kubernetes environment using GitHub Actions workflows. The deployment and all data is automatically refreshed nightly. On the cloud, the application is running on a PostgreSQL database. The GitHub Container Registry is used to publish Docker images.

In this article, we would like to show how to deploy the Jakarta EE projects to the Kubernetes cluster within Jelastic PaaS using Cargo Tracker as an example. The source code of the project can be found in our repository: https://github.com/jelastic/cargotracker

Kubernetes Installation

First, let’s create a Kubernetes cluster from the Jelastic marketplace. It's a fully automated process, so just follow our tutorial Kubernetes Cluster Setup with Automated Scaling and Pay-per-Use Pricing.

Kubernetes Cluster installation

The topology of a simple development cluster can look like as follows:

Kubernetes Cluster

Jakarta EE Project Deployment

1. To deploy a project, get three config files from the repository:

  • The postgres-secret.yaml provides database username and password encoded with Base64. This demo project uses the same value “postgres” for both.
  • The postgres.yaml will create a PostgreSQL database.
  • The cargo-tracker.yaml will deploy highly available topology of Jakarta EE application which consists of 2 replicas.
Jakarta EE Project Deployment

2. Use a configuration file manager to create these files on the Control plane node (formerly known as Master) of Kubernetes cluster.

Jakarta EE Deployment to Kubernetes

With help of these files you will create the K8s resources:

  • postgres-secret
  • postgres deployment
  • postgres service
  • cargo-tracker deployment
  • cargo-tracker service
  • cargo-tracker ingress

3. Log in to the Control plane node via WebSSH and apply the files. But first let’s see whether the ROOT context path “/” is taken by any ingress or not.

To do this Issue:

$ kubectl get ing

As we can observe the helloworld application’s ingress is holding the “/” context path.

kubernetes web shh

Let’s release the path for Cargo-tracker application deleting an existing ingress resource:

$ kubectl delete ing helloworld

After ingress deletion, apply all of the mentioned files in the order as follows:

$ kubectl apply -f postgres-secret.yaml
$ kubectl apply -f postgres.yaml
$ kubectl apply -f cargo-tracker.yaml

kubernetes files

Jakarta EE Project Testing

Wait for a minute and check whether the mentioned above resources have been created and are running:

$ kubectl get secrets

Jakarta EE Project Testing

$ kubectl get deploy

jakarta ee inside kubernetes

$ kubectl get svc

cargo tracker files

Finally, press the Open in Browser button to get to your application and check its workability.

open in browser jakarta ee application
cargo tracker

You can check how the system works using demo Tracking ID ABC123.

cargo tracker testing

Congratulations! Application setup is finished successfully. Feel free to run your Jakarta EE projects inside Kubernetes clusters with Jelastic PaaS Providers.

Author(s)

  • Avatar photo
    Tetiana Fydorenchyk

    Global Product Marketing at Virtuozzo, the leader in virtualization and hyperconverged cloud platform for MSPs and CSPs. A former Vice President of Marketing in Jelastic, a multi-cloud PaaS provider serving ... Learn more

Comments (0)

Your email address will not be published. Required fields are marked *

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Save my name, email, and website in this browser for the next time I comment.

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard