Containerization has emerged as a game-changer for modern enterprises seeking unparalleled agility and efficiency. By containerizing JBoss EAP applications, businesses can seamlessly encapsulate their complex Java applications and their dependencies, enabling rapid deployment, scalability, and simplified management. This transformative approach empowers organizations to respond swiftly to evolving market demands, reduce deployment friction, and fully harness the exceptional performance and reliability that JBoss EAP is renowned for.
Deploying a JBoss EAP application on Kubernetes involves several steps, including containerizing the application and creating an image with a JBoss EAP instance. Red Hat OpenShift offers a comprehensive set of development tools that streamline the containerization of applications. With its "Source to Image" feature, OpenShift simplifies the process of building and deploying applications by allowing developers to directly push their source code to the platform, which then automatically builds the container image.
What about other Kubernetes flavors, like Amazon EKS?
In this blog, we will guide you through the process of containerizing a JBoss EAP application using Move2Kube UI tool, which simplifies the containerization process by analyzing the application and generating the necessary Kubernetes artifacts automatically. Additionally, we will demonstrate how to deploy the containerized application on Amazon EKS, a managed Kubernetes service offered by Amazon Web Services (AWS). Note that running JBoss EAP on Amazon EKS will not be as full-featured as running JBoss EAP on Red Hat OpenShift. For example, you can get a supported EAP operator to deploy and manage JBoss EAP applications on Openshift, with features like Transaction Recovery, High Availability, and Failover, to mention a few.
Let's get started and learn how to containerize and deploy a JBoss EAP application on EKS using Move2Kube UI tool.
Prerequisites:
- A running Amazon EKS cluster.
- Move2Kube UI tool installed and running on your local machine.
- Container registry (such as Amazon ECR or Redhat Quay)
- Amazon load balancer (either Application Load Balancer or Network Load Balancer)
These prerequisites are necessary to containerize your JBoss EAP application using Move2Kube UI tool and deploy it on Amazon EKS.
Build your JBoss EAP Application
For this example, we will use quickstart from the repository below. Clone this in your local machine, and create a zip file:
https://github.com/jboss-developer/jboss-eap-quickstarts/tree/7.4.x/kitchensink
$ zip -r kitchensink.zip kitchensink
Launch Move2Kube Tool via Container
- Run the container for Move2Kube GUI, following the instructions below:
https://move2kube.konveyor.io/tutorials/ui - Access UI at http://localhost:8080/workspaces
Create Workspace and Project
Workspace: jboss-demo
Project: kitchensink-app
Figure 1 shows the UI view of Move2Kube application and workspace creation.
Figure 1: Move2Kube UI running in a container and accessed via localhost
Scroll down and upload the zip folder containing the source files for the KitchenSink application (see Figure 2), then click “Start Planning.” This will generate a plan for the source files to be transformed into Kubernetes YAMLs.
Figure 2: Click the Start Planning button to generate a transformation plan
Once the plan is generated, click “Start Transformation.” This will walk you through a questionnaire, and for this example, provide the following options:
Step 1: Start Transformation
Step 2: move2kube Transformer Selector: default
Step 3: move2kube.transformers.types: select all
Step 4: move2kube.services.[].enable: kitchensink
Step 5: move2kube.services."kitchensink".dockerfileType: no build stage
Step 6: move2kube.services."kitchensink".childModules."kitchensink".port: 8080
Step 7: move2kube.services."kitchensink".wartransformer: jboss
Step 8: move2kube.target.imageregistry.url: quay.io
Step 9: move2kube.target.imageregistry.namespace: kitchensink-app
Step 10: move2kube.target."default".clustertype: AWS-EKS
Step 11: move2kube.services."kitchensink"."8080".servicetype: Ingress
For the remaining questions, leave the default values and finish the transformation. This should create a zip file (Figure 3). Download the file.
Figure 3: Zip file shown as output of planning step.
Explore Generated Artifacts
Open the downloaded folder in IDE/CLI and explore the generated artifacts (see Figure 4).
Figure 4: Folder structure of the downloaded zip file.
The deploy directory contains deployment artifacts, YAMLs for each of the services that we have identified using Move2Kube plan file. It also contains various CI/CD templates and files, and we can pick and choose as needed, based on whether we use ArgoCD/Helm/Kustomize/Tekton tools.
The scripts directory contains scripts for building and pushing images into the preferred registry (in this case, quay.io). The source dir contains the dockerfile that will be used to build the container image; currently it shows for Wildfly binaries (see Figure 5).
Figure 5: Docker file snapshot
These binaries can be replaced with JBoss EAP binaries for enterprise support from Redhat for the EAP applications (an example is available here).
Build, Push, and Deploy Application Container Image
If using Podman, run the build script as shown. Make sure source/kitchensink/dockerfile has the correct WAR file being copied.
$ cd scripts
$ ./buildimages.sh podman
$ podman images
REPOSITORY TAG IMAGE ID CREATED SIZE
localhost/kitchensink latest 7373c8d909b2
Now run the pushimage script to push the built image into quay.io (for this example). Make sure to log into the registry first. If choosing to specify any other registry, modify scripts/pushimages.sh.
$ ./pushimages.sh quay.io <> podman
Deploy the image in running EKS cluster using deploy/yamls/kitchensink-deployment.yaml
Make sure to check the YAML for the correct image name, including URL.
$ deploy/yamls > kubectl create namespace jboss
namespace/jboss created
$ deploy/yamls > kubectl create -f kitchensink-deployment.yaml -n jboss
deployment.apps/kitchensink created
$ kubectl get pods -n jboss
NAME READY STATUS RESTARTS AGE
kitchensink-78b6668fcc-fmmwn 1/1 Running 0 17s
kitchensink-78b6668fcc-w2p96 1/1 Running 0 17s
$ deploy/yamls > kubectl create -f kitchensink-service.yaml -n jboss
service/kitchensink created
$ deploy/yamls > kubectl get service -n jboss
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kitchensink ClusterIP 10.100.143.162 <none> 8080/TCP 5s
$ deploy/yamls > kubectl create -f kitchensink-app-ingress.yaml
Make sure to check for annotations for the Amazon load balancer controller (refer to the example here).
Test KitchenSink Application
Once the ingress is created, it might take a minute for the ingress URL to be available.
$ kubectl get ingress kitchensink-app
NAME CLASS HOSTS ADDRESS PORTS AGE
kitchensink-app <none> * k8s-default-kitchens-6ed7dc9438-1460104612.us-east-2.elb.amazonaws.com 80 14m
Open the browser and access the KitchenSink application (see Figure 6) at the above address and the suffix /kitchensink path.
Figure 6: Running JBoss application accessible from OpenShift route.
Conclusion
We have explored the process of containerizing the KitchenSink application using the Move2Kube tool and generating the required Kubernetes artifacts and YAML files for deployment in an Amazon EKS cluster. This streamlined approach allows developers to efficiently package and deploy their JBoss EAP applications.
Both Move2Kube and OpenShift offer valuable solutions for containerization and deployment tasks. While Move2Kube focuses on the Kubernetes ecosystem, OpenShift provides a comprehensive platform with additional features and tools to further streamline the process.
저자 소개
유사한 검색 결과
채널별 검색
오토메이션
기술, 팀, 인프라를 위한 IT 자동화 최신 동향
인공지능
고객이 어디서나 AI 워크로드를 실행할 수 있도록 지원하는 플랫폼 업데이트
오픈 하이브리드 클라우드
하이브리드 클라우드로 더욱 유연한 미래를 구축하는 방법을 알아보세요
보안
환경과 기술 전반에 걸쳐 리스크를 감소하는 방법에 대한 최신 정보
엣지 컴퓨팅
엣지에서의 운영을 단순화하는 플랫폼 업데이트
인프라
세계적으로 인정받은 기업용 Linux 플랫폼에 대한 최신 정보
애플리케이션
복잡한 애플리케이션에 대한 솔루션 더 보기
오리지널 쇼
엔터프라이즈 기술 분야의 제작자와 리더가 전하는 흥미로운 스토리
제품
- Red Hat Enterprise Linux
- Red Hat OpenShift Enterprise
- Red Hat Ansible Automation Platform
- 클라우드 서비스
- 모든 제품 보기
툴
체험, 구매 & 영업
커뮤니케이션
Red Hat 소개
Red Hat은 Linux, 클라우드, 컨테이너, 쿠버네티스 등을 포함한 글로벌 엔터프라이즈 오픈소스 솔루션 공급업체입니다. Red Hat은 코어 데이터센터에서 네트워크 엣지에 이르기까지 다양한 플랫폼과 환경에서 기업의 업무 편의성을 높여 주는 강화된 기능의 솔루션을 제공합니다.