Advanced DevSecOps: End-to-End Three-Tier Kubernetes on AKS with FluxCD, Grafana & PrometheusJul 23, 2025·16 min read
Production-Ready EKS Provisioning with Terraform and GitHub ActionsIntroduction Provisioning infrastructure manually is error-prone and inefficient—especially for production environments. This blog shares my hands-on experience provisioning a production-grade Amazon EKS cluster using Terraform and GitHub Actions. As...Sep 17, 2025·17 min read
Docker volume and Docker NetworkTwo essential components of Docker are volumes and networks. In this blog, we will explore these two components and understand how they are used in a Docker project. Docker Volume Docker Volume is a persistent data storage mechanism that enables a co...Mar 24, 2023·4 min read
Docker Cheat SheetImages ImagesCommand List available imagesdocker images [options] Download an image from a registrydocker pull [image_name] Build an image from a Dockerfiledocker build [options] [path_to_dockerfile] Tag an imagedocker tag [image_name] [new...Mar 22, 2023·3 min read
Docker Project for DevOps EngineersIn this Blog, we'll build a simple Todo app using Flask and Docker. The app will allow users to add, update, and delete tasks. We'll use Docker to containerize the app and simplify deployment. here's a summary of the web project for practising Docker...Mar 19, 2023·5 min read
Docker for DevOps EngineersDocker is a powerful containerization platform that has revolutionized the way software applications are built and deployed. It provides a lightweight and portable way to package an application, along with its dependencies, into a single container th...Mar 16, 2023·5 min read
Python for DevopsPython has become a widely used programming language in the world of DevOps due to its versatility and ease of use. It can be used for automation, testing, and scripting in the DevOps process. In this blog, we will explore how Python can be used in D...Mar 15, 2023·2 min read
Git And Linux CheatsheetGit Cheatsheet CommandDescription git initInitialize a new git repository git clone [url]Clone a remote repository git statusCheck the status of the repository git add [file]Add changes to the staging area git commit -m "[message]"Commit c...Mar 15, 2023·4 min read