Question: 1/50
You need to create a new namespace called 'production' and set resource quotas to limit the namespace to a maximum of 10 pods. Which commands should you execute?
kubectl create namespace production && kubectl create quota pod-limit --hard=pods=10 -n production
kubectl create ns production && kubectl create resourcequota pod-limit --hard=pods=10 -n production
kubectl apply namespace production && kubectl set quota pods=10 -n production
kubectl new namespace production && kubectl quota --max-pods=10 -n production