YAML is a heavily used markup language in this cloudy world. There are many tricks that can help us work smartly with YAML.
Continue reading Work smartly with YAMLAuthor: Fahad Ahammed
How to delete SSL certificates created through Certbot?
Everyone is using Certbot to have some free SSL certificates. I am here to document some commands related to managing SSL certificates created by Certbot.
Continue reading How to delete SSL certificates created through Certbot?Take Down all the Services Which are Deployed in Kubernetes by Imperative Way
To take down the services deployed by Kubernetes, this oneliner is pretty handy in some situations despite being too cluttered command… But it does work in situations.
% kubectl get deployments | awk '{print $1}' | grep -v "NAME" | while read f; do kubectl scale deployment $f --replicas=0; done
Posted a new Blog at Medium: How to Deploy RedisInsight in EKS and Access via Ingress Nginx
Install Postman in Linux Desktop
I should rename the title to “Install Postman in POP OS” as recently I have been working on a POP OS. This thing is sleek. I love the workflow. It comes with default FLATPAK and no SNAP. I did not want to use snap.
So here I am, installing Postman from their binary compressed file.
Continue reading Install Postman in Linux Desktop