DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Last call! Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workloads.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

Related

  • Minions in Minikube - A Kubernetes Intro for Java Developers
  • Why Camel K?
  • 7 Microservices Best Practices for Developers
  • How Kafka Can Make Microservice Planet a Better Place

Trending

  • The Human Side of Logs: What Unstructured Data Is Trying to Tell You
  • Blue Skies Ahead: An AI Case Study on LLM Use for a Graph Theory Related Application
  • Start Coding With Google Cloud Workstations
  • The Cypress Edge: Next-Level Testing Strategies for React Developers
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Deployment
  4. Kubernetes for Java Developers

Kubernetes for Java Developers

There is a new class of tools for dockerizing and deploying an application to Kubernetes which are aimed at developers. The latest in that category is JKube from RedHat.

By 
Taruvai Subramaniam user avatar
Taruvai Subramaniam
DZone Core CORE ·
Apr. 29, 21 · Tutorial
Likes (8)
Comment
Save
Tweet
Share
11.2K Views

Join the DZone community and get the full member experience.

Join For Free

Microservices is a style of architecture consisting of a small, individual application component with a single responsibility, with a high degree of autonomy in terms of deployment and scalability. These components communicate via a lightweight protocol like REST over HTTP. In consequence, development teams are small (the two-pizza rule), focused on a microservice. In practice the team owns the entire lifecycle from development to deployment — if you built it, you run it. This creates a problem. After all, dev teams' core competency is usually Maven, a microservices framework, say, Spring Boot, test frameworks like JUnit, and so on. But if we look at the steps involved in deploying a microservice:

  • Package the application in a container like Docker. This involves writing a Dockerfile.
  • Deploy the container to an orchestrator like Kubernetes. This involves writing several resources; description files for services, deployment, etc.

To use a term familiar to developers, this is an 'impedance mismatch.' To solve this problem, we need a class of tools that speak the language of developers and make the entire deployment steps transparent to them. The most famous of these is Jib, which we dealt with in a previous paper, which builds optimized Docker and OCI images for your Java applications and is available as a Maven plugin. There are other tools in this category like Dekorate which allows us to generate Kubernetes manifests using just Maven and Java annotations. The latest and comprehensive entry in this category is JKube from RedHat which our subject de jour.

JKube is a Maven plugin with the goal, among others, of building a Docker image and creating Kubernetes resource descriptors. The image and the descriptors can be generated with no configuration, based on some opiniated defaults based on the entries in the pom file, or alternatively can be customized with XML entries in the pom or in extremis with Dockerfiles and resource fragments. Here are the plugin’s goals:

Goal 

Description

k8s:build

Dockerize the application into an image.

k8s:resource

Generate the k8s resource descriptors.

k8s:apply

Apply these manifests.

k8s:log

View the logs of the container.

K8s:undeploy

Undo the deployment.

To begin, I will assume that you have a local install of Docker and Kubernetes. There are several ways to do it. I will also assume that you have a basic knowledge of Docker and Kubernetes as outlined in [Docker] and [Kubernetes].

XML
 




x


 
1
<plugin>
2
     <groupId>org.eclipse.jkube</groupId>
3
     <artifactId>kubernetes-maven-plugin</artifactId>
4
     <version>1.2.0</version>
5
</plugin>



Now we can generate the image:

Plain Text
 


xxxxxxxxxx
1
 
1
mvn k8s:build


After the usual Spring Boot song and dance, you can list the image:

Listed Image

You can customize the image. For instance, you may want to pick the base image other than the default that the plugin uses, by configuring the from element in the pom:

XML
 




x


 
1
<configuration>
2
     <images>
3
      <image>
4
       <build>
5
           <from>your-base-image</from>
6
……..



You can also use your own Dockerfile. For instance, you may want to use JLink to create a custom JRE in order to minimize the image size. We showed before how to do this. We can now generate the resource files.

Plain Text
 




xxxxxxxxxx
1


 
1
mvn k8s:resource



This will generate two files <artifactid>-deployment.yml and <artifactid>-service.yml in target\classes\META-INF\jkube\kubernetes.

Notice that the deployment YML has a liveliness and readiness probe:

YAML
 




xxxxxxxxxx
1


 
1
livenessProbe:
2
          failureThreshold: 3
3
          httpGet:
4
            path: /actuator/health
5
            port: 8080
6
            scheme: HTTP
7
          initialDelaySeconds: 180
8
          successThreshold: 1
9

          



and 

YAML
 




xxxxxxxxxx
1


 
1
readinessProbe:
2
          failureThreshold: 3
3
          httpGet:
4
            path: /actuator/health
5
            port: 8080
6
            scheme: HTTP
7
          initialDelaySeconds: 10
8
          successThreshold: 1
9

          



This is because we included a dependency on Spring Boot Actuator. (Liveliness probe determines if a container is healthy and does not need to be restarted. A readiness probe determines when a service is ready to serve user requests.) This is an example of JKube using information from the pom and some defaults to configure the deployment.

The default service created is of type ClusterIP. But you won’t be able to access it from outside the cluster. To do that you will need to provide an additional parameter to Jkube (see below).

You can be more specific using resource fragments. A resource fragment is just what it sounds like — the fragment of a resource. For instance, we will use a resource fragment to configure a configMap. (A ConfigMap is a set of key-value pairs that configure the image per environment, such as dev, QA, test, prod, etc.). You can include a resource fragment in src/main/jkube directory.

Plain Text
 




xxxxxxxxxx
1


 
1
metadata:
2
  name: ${project.artifactId}
3
data:
4
  application.properties:
5
    welcome = Hello from Kubernetes in Dev!!!
6

          



In the deployments.yml in the same directory, you can specify how to mount this as a volume.

YAML
 




xxxxxxxxxx
1
13


 
1
spec:
2
      volumes:
3
        - name: config
4
          configMap:
5
            name: ${project.artifactId}
6
            items:
7
              - key: application.properties
8
                path: application.properties
9
      containers:
10
        - volumeMounts:
11
            - name: config
12
              mountPath: /deployments/config
13

          



On running k8s:resource you will see a <artifactid>-configmap.yml in target\classes\META-INF\jkube\kubernetes. (There seems to be a bug in generating the config map’s resource description. Unlike with other resource fragments, it does not lower case the artifactid for the resource description. So, you should name your artifactid in all lower cases. The problem is unless you follow the Kubernetes naming convention your resource will not deploy.)

Now we are ready to deploy to Kubernetes.

Plain Text
 




xxxxxxxxxx
1


 
1
mvn install k8s:build k8s:resource k8s:apply



You can check that you have a successful deployment:

Successful Deployment Check

To provide access from outside the cluster we change the service type to NodePort:

Plain Text
 




xxxxxxxxxx
1


 
1
mvn install k8s:build k8s:resource k8s:apply -Djkube.enricher.jkube-service.type=NodePort



You can do this is in one step if you modify your pom:

XML
 




xxxxxxxxxx
1
16


 
1
<plugin>
2
   <groupId>org.eclipse.jkube</groupId>
3
   <artifactId>kubernetes-maven-plugin</artifactId>
4
   <version>1.2.0</version>
5
   <executions>
6
     <execution>
7
     <id>jkube</id>
8
     <goals>
9
       <goal>apply</goal>
10
       <goal>resource</goal>
11
       <goal>build</goal>
12
      </goals>
13
     </execution>
14
    </executions>
15
  </plugin>
16

          



Now you can deploy in one step: mvn install.

Finally, you can clean after yourself by un-deploying the resource: mvn k8s:undeploy.

The source is available on Github. You can get more information on JKube here, here, and here.

Many thanks to Rohan Kumar for his help.

Kubernetes Docker (software) dev Plain text Spring Framework Java (programming language) microservice

Opinions expressed by DZone contributors are their own.

Related

  • Minions in Minikube - A Kubernetes Intro for Java Developers
  • Why Camel K?
  • 7 Microservices Best Practices for Developers
  • How Kafka Can Make Microservice Planet a Better Place

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!