DEV Community

Discussion on: Learn Kubernetes, part III scaling my app

Collapse
 
vinipachecov profile image
Vinícius Pacheco Vieira • Edited

Amazing content, I'm sharing to all my team here.
Just to update, at least in my computer, when running kubernetes in version 1.15 running kubectl delete $POD_NAME will not work, you have to specifcy a resource(pod, service etc).
The final command will be "kubectl delete pods $POD_NAME".

kubernetes.io/docs/tasks/run-appli...

Collapse
 
softchris profile image
Chris Noring

Thank you for that :) Hmm interesting.. Might be version thing, I'll update the command to ensure it works for all versions :)