Let's get this installed!
The main CLI tool for Kubernetes
The best Kubectl resource on the internet
kubectl run <name> <command> <options> --image <image>
kubectl run app-1 --image krisnova/kubernetes-workshop-app
kubectl get deploy <name> -oyaml
kubectl edit deploy <name>
kubectl get pods
kubectl logs <pod> -f
kubectl explain <pod>
kubectl describe <pod>
alias kdump="kubectl get all --all-namespaces"