-
AKS 18- Step-by-Step Guide to Set Up AKS for .NET Deployment
Step 1: Understand the Application Requirements Before provisioning infrastructure, gather: ✅ Tools: Look for: 📌 This helps you estimate pod resource requests/limits. Step 2: Plan AKS Infrastructure Decide: RegistryUse – Azure Container Registry (ACR)…
-
Docker 1 – Explain basic Docker file
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base WORKDIR /app EXPOSE 80 FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build WORKDIR /src COPY . . RUN dotnet publish -c Release -o /app/publish FROM base AS final WORKDIR /app COPY –from=build /app/publish . ENTRYPOINT [“dotnet”, “YourApp.dll”] This Dockerfile is a multi-stage build for a .NET 6.0 ASP.NET application 🧠 Layman’s Explanation: Imagine you’re baking a cake: This Dockerfile does…
-
AKS 17 – AKS Service & Networking Resources
🌐 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…
-
AKS 16- Core Kubernetes Objects in AKS
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. 🧱…
-
AKS 17 -What is K3s and how it different from k8s.
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…
-
AKS 15 – Stateful Containers and why need
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…