Command Palette
Search for a command to run...
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...
How to fix FailedGetResourceMetric
Warnings related to "FailedGetResourceMetric" can include the following: failed to get cpu utilization: unable to get metrics for resource cpu: no metrics returned from resource metrics API failed to get cpu utilization: did not receive metrics fo...
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"...