-
AKS 21 – Actual current AKS setup
We have total 2 node pool System & user Under user node pool we were having 2 nodes and this node pool is autoscale like system node pool can go upto 2 and user…
-
AKS Q&A – 2
What’s the difference between development Kubernetes environments and production systems? A: Development environments like Minikube, k3s, kind, k3d, and micro-k8s are designed for local testing and learning, but they’re not suitable for production use. In…
-
Infra 4 – What is RabbitMQ?
RabbitMQ is a message broker β think of it like a post office for your microservices. π¦ Why Use RabbitMQ? Imagine you have two microservices: Instead of Order Service calling Email Service directly, it…
-
Devops 2- Microservices vs Monolith: Core Differences
Monolith: All components are tightly integrated and run as a single unit. Microservices: Application is broken into independent services, each responsible for a specific business capability. β Benefits of Microservices
-
Infra 3 – Redis
Redis is like a super-fast notebook your computer uses to remember things temporarily. Imagine youβre working on a task and you jot down quick notes on a sticky pad β Redis is that sticky…
-
AKS 21- All type AKS Manifest Files Overview
You typically need the following Kubernetes objects: 1. Deployment (deployment.yaml) Defines how your app is deployed (replicas, containers, image, etc.). Why use: Ensures consistent rollout of your app with scaling and updates. 2. Service…