These commands are meant to run on Unix based system. If you are on a Windows system, please adjust file paths accordingly.
Docker Desktop comes with an option to spin up a local Kubernetes cluster. Use the following steps to activate it.
Dashboard
from the dropdown.Enable Kubernetes
and click Apply and Restart
$kubectl create deployment nginx --image=nginx
$kubectl get deployment --watch
After a few seconds, you should see output similar to this:
NAME READY UP-TO-DATE AVAILABLE AGE
nginx 1/1 1 1 8s