-
Infra 3 – Redis
Redis is like a super-fast notebook your computer uses to remember things temporarily. Imagine youβre working on a task and you jot down quick notes on a sticky pad β Redis is that sticky…
-
AKS 21- All type AKS Manifest Files Overview
You typically need the following Kubernetes objects: 1. Deployment (deployment.yaml) Defines how your app is deployed (replicas, containers, image, etc.). Why use: Ensures consistent rollout of your app with scaling and updates. 2. Service…
-
AKS – 20 – What is different between Load balancer in service and ingress.
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. ποΈ…
-
AKS 20 – Explain Service manifest file
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…
-
AKS 19 – Explain Deployment Manifest file
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…
-
Docker 2 – What all different size of images available as base image of docker & Why do we need different types of Docker images?
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…