Feb 2 · 9 min read · 💡Hey — It's Bittu Sharma👋 We should learn Kubernetes in Docker (KIND) to quickly spin up lightweight, multi-node Kubernetes clusters for local development and CI/CD testing, enabling faster iteration and production-like environments on our machin...
Join discussion
Jan 11 · 6 min read · Stakater reloader usage In this article have detailed the use of open source project Stakater reloader to reload the pod whenever the ConfigMap or Secret is updated. To understand the use case a simple Spring Boot application is created with JBang, ...
Join discussionDec 25, 2025 · 2 min read · In this post, I will talk about setting up a multi-node kind cluster on a Linux (Ubuntu 22.04) host. Install Kind Execute the below script on the host to install kind command on the host. This script has been inspired from Kind installation #!/bin/ba...
Join discussion
Dec 16, 2025 · 2 min read · Project Overview This article documents the process of taking a trained Machine Learning model—a lead scoring classifier—and deploying it into a production-ready environment using Docker for containerization and Kubernetes (Kind) for orchestration. T...
Join discussionDec 3, 2025 · 4 min read · Installed & Configured everything step-by-step. Install Docker # Install docker sudo apt install docker.io sudo usermod -aG docker $USER newgrp docker Install Kind # For AMD64 / x86_64 [ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k...
Join discussion
Sep 22, 2025 · 4 min read · Executive Summary Apple Silicon has transformed developer workflows, offering high performance and energy efficiency. Many engineers rely on local Kubernetes clusters, often using kind (Kubernetes-in-Docker), to replicate production environments. How...
Join discussion
Sep 7, 2025 · 6 min read · Learning Kubernetes becomes far easier when you can experiment locally — without cloud accounts, billing, or production clusters. Fortunately, Kubernetes offers several lightweight tools that let you create a real cluster on your laptop. In this chap...
Join discussion
Sep 1, 2025 · 7 min read · Deploy Postgres DB with Backup data to Minio configured in KIND cluster This article details deploying Postgres DB in KinD cluster with Backup configuration enabled. The data will be backed up in S3 compatible store in this case Minio. Along with Pos...
Join discussionAug 25, 2025 · 6 min read · Introduction We've laid a strong theoretical foundation in this series: we know why Kubernetes is essential, we've mapped out its architecture, and we've met the core objects like Pods and Services. Now, we pivot from theory to practice. The single m...
Join discussion