September 2019
Intermediate to advanced
668 pages
15h 59m
English
Let's see how we can do the following:
First, create a namespace, first-attempts, and update the kubectl context to use this namespace by default:
kubectl create namespace first-attemptskubectl config set-context $(kubectl config current-context) --namespace=first-attempts
We can now create a deployment of NGINX in the namespace using the kubernetes/first-attempts/nginx-deployment.yaml file. This ...