devopsguide.in

  • AKS
  • AKS – 20 – What is different between Load balancer in service and ingress.

    September 26, 2025

    LoadBalancer Service: 🧾 Example: You have one app (welcome-app) and want to expose it to the internet. You use LoadBalancer, and your cloud provider gives you a public IP to access it directly. πŸ›ŽοΈ…

    Continue reading…

  • AKS 20 – Explain Service manifest file

    September 26, 2025

    apiVersion: v1 πŸ”Ή kind: Service πŸ”Ή metadata: Why it’s used: This is the name of the Service, used to reference it within the cluster. spec: selector:     app: welcome-app Why it’s used: This tells…

    Continue reading…

  • AKS 19 – Explain Deployment Manifest file

    September 26, 2025

    apiVersion: apps/v1 kind: Deployment metadata: name: welcome-app Name of the Deployment. Used to reference this object. labels:     app: welcome-app Labels are key-value pairs used for grouping and selecting resources. spec: replicas: 3 Why…

    Continue reading…

  • Docker 2 – What all different size of images available as base image of docker & Why do we need different types of Docker images?

    September 26, 2025

    A full base image like ubuntu:latest is around 70–80 MB and includes a complete OS environment. A slim image such as ubuntu:20.04-slim is 30–40 MB, providing a smaller version with fewer packages. The Alpine…

    Continue reading…

  • AKS 18- Step-by-Step Guide to Set Up AKS for .NET Deployment

    September 25, 2025

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

    Continue reading…

  • Docker 1 – Explain basic Docker file

    September 25, 2025

    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…

    Continue reading…

←Previous Page Next Pageβ†’