Complete the command to delete a pod named 'my-pod'.
kubectl delete [1] my-podThe kubectl delete pod my-pod command deletes the pod named 'my-pod'.
Complete the command to delete a deployment named 'web-app'.
kubectl delete [1] web-appUse kubectl delete deployment web-app to remove the deployment named 'web-app'.
Fix the error in the command to delete a service named 'backend'.
kubectl [1] service backendThe correct command to remove a service is kubectl delete service backend.
Fill both blanks to delete a configmap named 'app-config' in the 'dev' namespace.
kubectl delete [1] app-config -n [2]
Use kubectl delete configmap app-config -n dev to delete the configmap in the 'dev' namespace.
Fill all three blanks to delete a pod named 'cache-pod' with a grace period of 0 seconds.
kubectl delete [1] cache-pod --grace-period=[2] --force=[3]
The command kubectl delete pod cache-pod --grace-period=0 --force=true force deletes the pod immediately.