-
AKS 11 -How AKS internal communication happen.
1. Pod-to-Pod Communication (Same Namespace, Same Node) From c1/c2 → c3 (ns-dev on node-cpu) Mechanism: Pods on the same node communicate via the virtual network interface provided by the container runtime (usually containerd). Network:…
-
AKS 10 – Basic and Architecture
Kubernetes is just set of controller where every controller have other controller. In kubernetes container present in pod , pod in node and node in cluster. Etcd in kubernetes talk with other using protocol…
-
Gitops 1- Flux CD (GitOps tool for Kubernetes)
FluxCD is a GitOps tool for Kubernetes that automates the deployment of applications by monitoring Git repositories for changes and applying them to your cluster. It uses a “pull-based” deployment model where the cluster…
-
Deployment rollout strategies in AKS (Azure Kubernetes Service)
A rollout is how Kubernetes updates your application (container image, config, etc.) in a Deployment without downtime. It replaces old pods with new ones gradually, based on the strategy you define. Rolling out a…
-
What is a Deployment in AKS (Azure Kubernetes Service)?
A Deployment in AKS (or in Kubernetes in general) is a controller that manages the lifecycle of your application pods. It ensures that a defined number of replicas of your application are running at…
-

What is Helm and why we use it.
Think of Helm as a package manager for Kubernetes — like how: You can use Helm to install, configure, and manage applications on Kubernetes — without writing complex Kubernetes YAML files manually every time.…