devopsguide.in

  • AKS
  • AKS 17 – AKS Service & Networking Resources

    September 25, 2025

    🌐 1. Service 👶 Layman’s Explanation: Think of a reception desk in a hotel. You don’t need to know which room the guest is in — you just ask the receptionist, and they connect…

    Continue reading…

  • AKS 16- Core Kubernetes Objects in AKS

    September 25, 2025

    Workload Resources 1. Pod 👶 Layman’s View: Like a tiffin box — it holds one or more containers (dishes) that work together. 💻 Technical Use: Used for testing or running a single microservice. 🧱…

    Continue reading…

  • AKS 17 -What is K3s and how it different from k8s.

    September 25, 2025

    K3s is a lightweight, certified Kubernetes distribution designed for resource-constrained environments like: K3s is a fully compliant Kubernetes (K8s) distribution, but it is not exactly the same as vanilla Kubernetes. Think of it as…

    Continue reading…

  • AKS 15 – Stateful Containers and why need

    September 25, 2025

    A stateful container is like a bank account — it remembers your balance, transactions, and details even if you log out and come back later. 💻 Technical Explanation: A stateful container in Kubernetes is…

    Continue reading…

  • AKS 15 – How to Debug live pod?

    September 25, 2025

    Ephemeral Containers in Kubernetes is a powerful way to debug running Pods without modifying their original spec or restarting them 🔧 What Are Ephemeral Containers? 🧪 Prerequisites 🚀 How to Use Ephemeral Containers ✅…

    Continue reading…

  • AKS 14- List of Container Types as per AKS (Kubernetes)

    September 25, 2025

    1. Init Container initContainers: – name: init-secrets   image: vault-cli   command: [“sh”, “-c”, “vault pull /secrets > /app/secrets.json”] 2. Main (Application) Container containers: – name: web-app   image: node:18   ports: 3. Sidecar Container containers: – name: web-app   image: node:18 – name: log-shipper   image: fluentd   volumeMounts:   – name: logs     mountPath: /var/log/app 4. Stateless Container containers: – name: react-ui   image: my-react-app:latest   ports: 5.…

    Continue reading…

←Previous Page Next Page→