Scaling Kubernetes Like a Pro: Hands-On with HPA, KEDA & KarpenterIn modern cloud-native environments, scalability isn’t a luxury — it’s a survival skill. Kubernetes makes scaling workloads and infrastructure seamless, but the real magic happens when you combine pod-level and node-level autoscaling strategies. In t...Sep 14, 2025·9 min read
Understanding Kubernetes Services🔹Introduction Kubernetes, an open-source container orchestration platform, has revolutionized the way applications are deployed, scaled, and managed in modern IT environments. One of its key features is the abstraction of services, allowing seamless...Mar 23, 2024·4 min read
ConfigMaps and Secrets in KubernetesIntroduction Configuration⚙️ is essential for any application to function properly. Any data that controls or influences how an application works can be considered configuration. Before jumping to ConfigMaps and Secrets let's understand something abo...Dec 2, 2023·5 min read
AWS Project: Creating Scalable AWS Infrastructure with Auto Scaling group & ALB using Terraform🔸Introduction Welcome to the AWS project where you will build a highly scalable and well-formed architecture of web servers using Terraform IaC. In part 1 (previous article) we created VPC architecture for our project. Now we will focus on creating ...Sep 23, 2023·12 min read
AWS Project: Deploy VPC, Subnets, IGW and Route Tables using Terraform🔸Introduction: In AWS, one of the fundamental networking components is the Virtual Private Cloud or VPC. A VPC allows us to define a virtual network within AWS, containing subnets and other networking resources. Provisioning VPCs manually through th...Jul 15, 2023·9 min read
A Beginner's Guide to Kubernetes: Deploy your First Pod⚓️Introduction In this blog we are going to discuss about Kubernetes, why it's needed and how it works with simplified terminologies and real-world examples. Also, you will be able to install Kubernetes on your system and deploy your app with quick a...Jun 9, 2023·10 min read
Running a Flask App with Jenkins CI/CD Pipeline: A Step-by-Step GuideDeploying a Python Flask app to Docker using Jenkins can be a bit daunting at first, but with the right tools and a clear understanding of the process, it can be relatively straightforward. In this tutorial, we will walk through the steps of deployin...May 20, 2023·7 min read