Categories
Technology

AWS EKS local setup

EKS – Elastic Kubernetes Service The Managed Kubernetes cluster on AWS..

Categories
Technology

Best Practices for Building Containers

Best practices to follow while building applications for the Container world and the backyard of Kubernetes

Categories
Technology

Swagger Rest API documentation for Spring Boot

Swagger REST API documentation for Spring Boot Applications. Few simple steps to automatically generate Swagger documentation for APIs

Categories
Technology

Kubernetes – CKAD Practise Exercises

Let’s explore and setup a minimal Wordpress application, covering the basic and important Kubernetes objects, both for the real world and CKAD

Categories
Technology

Import SSL certificate into Java KeyStore

How-To steps to import SSL certificates into Java trust KeyStore inside a Docker container

Categories
Hobby Projects Technology

Conversational Commerce with Facebook Messenger

Conversational Commerce is the capability to perform sales and transactional operations from Messaging platforms like Facebook Messenger

Categories
Technology

Pod Termination Lifecycle in Kubernetes

Graceful shutdown of Application inside Pods in Kubernetes As in any environment, even in a containerised environment, it’s highly desirable to have a graceful shutdown of the server process. We can explore how the Pod’s termination lifecycle events in Kubernetes play their part. Let’s assume we are running a Spring Boot based API or an […]

Categories
Technology

Extract Text Content from JMS Message

How to Extract Text Content from JMS Message If the message body is a text message (Plain text or XML), it can be extracted like the following. String msgBody = ((TextMessage) message).getText(); The JMS 2.0 API exposes the additional method in the Message Interface. <T> T getBody(Class<T> c) If the Message broker or the message […]

Categories
Technology

How to Install Docker Compose Offline

This post focus mainly on a scenario which we might face at times when we need to install Docker Compose but access to web / internet is not possible from the server due to security or access restrictions.. Docker gives alternate options for installing Compose using pip or as a Container. But even these options […]

Categories
Technology

Root password of a Docker container

Steps and user commands to
gain Root User privileges for Docker containers