devopsguide.in

  • AKS
  • AKS 11 -How AKS internal communication happen.

    September 22, 2025

    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:…

    Continue reading…

  • AKS 10 – Basic and Architecture

    September 22, 2025

    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…

    Continue reading…

  • Gitops 1- Flux CD (GitOps tool for Kubernetes)

    September 18, 2025

    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…

    Continue reading…

  • Deployment rollout strategies in AKS (Azure Kubernetes Service)

    July 7, 2025

    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…

    Continue reading…

  • What is a Deployment in AKS (Azure Kubernetes Service)?

    June 25, 2025

    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…

    Continue reading…

  • What is Helm and why we use it.

    What is Helm and why we use it.

    June 17, 2025

    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.…

    Continue reading…

←Previous Page Next Page→