Create a nginx pod with label env=test in engineering namespace See the solution below.
Create a nginx pod with label env=test in engineering namespace See the solution below.A . Solution: kubectl run nginx --image=nginx --restart=Never --labels=env=test --namespace=engineering --dry- run -o yaml > nginx-pod.yaml kubectl run nginx --image=nginx --restart=Never --labels=env=test --namespace=engineering --dry- run -o yaml | kubectl create -n engineering -f - YAML File: apiVersion:...