Create a namespace called 'development' and a pod with image nginx called nginx on this namespace.
See the solution below.
kubectl create namespace development
kubectl run nginx --image=nginx --restart=Never -n development
Submit