-

AKS Q/A (1)- AKS interview questions and answers
One word difference between docker and kubernetes Docker is container platform and kubernetes is container orchestration platform. Why Containers are considered ephemeral Why Containers Are Ephemeral: 🧠 How to Handle Ephemerality To manage the…
-

What is Labels in AKS manifest file?
In an AKS (Azure Kubernetes Service) manifest — which is just a standard Kubernetes manifest — a label is a key-value pair attached to Kubernetes objects (like pods, deployments, services, etc.) to organize and…
-

DevSecops 2 – What is Checkmarx scan & how to use it?
Checkmarx is a Static Application Security Testing (SAST) tool that analyzes source code, configuration files, and dependencies to detect security vulnerabilities. It helps developers identify and fix security flaws early in the development process.…
-

DevSecops 1 – What is Black Duck Scan & How to use it
Black Duck (by Synopsys) is a Software Composition Analysis (SCA) tool that scans application dependencies for: Open-source vulnerabilities✔ License compliance risks✔ Code quality issues✔ Security policy violations It integrates into CI/CD pipelines to detect…
-

AKS 9 – Pod and Container Lifecycle (within a Pod)
Container Lifecycle (within a Pod) Each container follows this: Pod Lifecycle Phases
-

AKS 8 – How Kubelet Deletes Pods Gracefully (Step-by-step)
When a Pod is deleted, Kubelet (the agent running on each AKS node) handles its graceful termination using a process called graceful shutdown. Here’s how it works: 1. User runs kubectl delete pod You…