Command Palette
Search for a command to run...
K8s
In the era of microservices, it's common for architects and engineers to mistakenly equate Kubernetes with the traditional VM world. As I continue my journey with Kubernetes, I’d like to share some key insights and lessons learned so far.
K8s - Do we need auto mount Service Account token?
I have often seen this topic misunderstood, with people thinking that the token must be mounted in the container to access the kube API server. Yes, that's true. We definitely need a token if we want our container to access the kube API server. If yo...
More from this blog
What AI says on EUR-INR forecast (Mid 2025-2026)
EUR/INR at Record Highs: Recent Performance The euro has surged to all-time highs against the Indian rupee in early 2025. As of April 2025, EUR/INR is trading around ₹98 per euro, after climbing roughly 10% over the past year (Indian exporters should...
K8s - Do we need auto mount Service Account token?
I have often seen this topic misunderstood, with people thinking that the token must be mounted in the container to access the kube API server. Yes, that's true. We definitely need a token if we want our container to access the kube API server. If yo...
Empowering the Future with Platform Engineering
Unleashing the Potential of Cloud Infrastructure

How to delete namespace that is stuck in terminating state
Get namespace that has terminating state: Kubectl get ns | grep terminating Delete the namespace forcefully using the below cmd line NS=`kubectl get ns |grep Terminating | awk 'NR==1 {print $1}'` && kubectl get namespace "$NS" -o json | tr -d "\n"...