k8s, aliases and frustation

I am not sure about you… but, after a few bi-zillions times running the same: k logs -f POD_NAME And get the error about the default container, so, you have to choose one, and then… run it again…. I wrote this: function klogs() { get_pod=$(kubectl get pods|awk ‘{print $1}’ | fzf) get_container=$(kubectl get pods ${get_pod} […]