David Ncl:
I’m doing the labs for LESSON 2, TOPIC 2 (config maps).
A couple of the tasks ask you to “Delete and recreate the POD” - which is easier said than done (or so it seems). The only way I’ve found to do this is to write out the “full” yaml for the pod like this kubectl get pod webapp-color -o yaml > pod.yaml
The hack the pod.yaml file in vi to remove ton of extra data. Then delete the pod, and then run kubectl create -f pod.yaml
Am I missing something obvious or is it as really like this?