Complete the command to create a pod named 'my-pod' using kubectl.
kubectl run [1] --image=nginx --restart=NeverThe command kubectl run my-pod --image=nginx --restart=Never creates a pod named 'my-pod'.
Complete the command to create a pod named 'web-server' with image 'nginx'.
kubectl [1] web-server --image=nginx --restart=NeverThe kubectl run web-server --image=nginx --restart=Never command creates a pod with the specified name and image.
Fix the error in the command to create a pod named 'db-pod' with image 'mysql'.
kubectl run db-pod --image=[1] --restart=NeverThe correct image name is 'mysql'. Adding tags or wrong names causes errors.
Fill both blanks to create a pod named 'cache-pod' with image 'redis'.
kubectl [1] [2] --image=redis --restart=Never
The command kubectl run cache-pod --image=redis --restart=Never creates the pod correctly.
Fill all three blanks to create a pod named 'api-pod' with image 'python:3.9' and restart policy 'Never'.
kubectl [1] [2] --image=[3] --restart=Never
The kubectl run command with pod name and image creates the pod with the specified restart policy.