Overview
In this post, We’ll show how you can launch Kotlin Application in Kubernetes.
Kotlin is a new programming language from JetBrains. It first appeared in 2011 when JetBrains unveiled their project named “Kotlin”. Kotlin is an Open-Source Language.
Basically like Java, C and C++ - Kotlin is also “statically typed programming language”. Statically typed programming languages are those languages in which variables need not be defined before they are used.
Prerequisites
To follow this guide you need
- Kubernetes - Kubernetes is an open source platform that automates container operations and Minikube is best for testing Kubernetes.
- Shared Persistent Storage - Shared Persistent Storage is permanent storage that we can attach to the Kubernetes container so that we don`t lose our data even container died. We will be using GlusterFS as a persistent data store for Kubernetes container applications.
- Kotlin Application Source Code - Application Source Code is source code that we want to run inside a kubernetes container.
- Dockerfile - Dockerfile contains a bunch of commands to build Kotlin application.
- Container-Registry - The Container Registry is an online image store for container images.
Below mentioned options are few most popular registries.
Create a Dockerfile
The below mentioned code is sample dockerfile for Kotlin applications. In which we are using maven 3 as a builder for Kotlin applications and OpenJDK 8 as a base development environment. Alpine Linux is used due to its very compact size.
Building Kotlin Application Image
The below mentioned command will build your application container image.
Publishing Container Image
Now we publish our Kotlin application container images to any container registry like Docker Hub, AWS ECR, Google Container Registry, Private Docker Registry.
I am using Docker Hub registry to publish images to the Kubernetes cluster.
Create an account on Docker Hub and create a Public/Private Repository of you application name.
To login to your docker hub account, Execute below-mentioned command.
Now we need to retag Kotlin application image and push them to docker hub container registry.
To Retag application container image
To Push application container Images
Similarly, we can push images to any of above-mentioned container registry like Docker Hub, AWS ECR, Google Container Registry, Private Docker Registry etc.
Creating Deployment files for Kubernetes
Deploying application on kubernetes with ease using deployment and service files either in JSON or YAML format.
- Deployment File
Following Content is for “<name of application>.deployment.yml” file of python container application.
- Service File
Following Content is for “<name of application>.service.yml” file of python container application.
Running Kotlin Application on Kubernetes
Kotlin Application Container can be deployed either by kubernetes Dashboard or Kubectl (Command line).
I`m explaining command line that you can use in production Kubernetes cluster.
Now we have successfully deployed Kotlin Application on Kubernetes.
Verification
We can verify application deployment either by using Kubectl or Kubernetes Dashboard.
The below-mentioned command will show you running pods of your application with status running/terminated/stop/created.
Result of above command
No comments:
Post a Comment