Created
July 23, 2018 10:11
-
-
Save habibiefaried/4fcf26925cdcac323e8f33b5f8829756 to your computer and use it in GitHub Desktop.
Kubernetes cheatsheet list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install virtualbox | |
curl -Lo minikube https://github.com/kubernetes/minikube/releases/download/v0.28.1/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/ | |
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.10.0/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/ | |
## CRI-O, but has to stopped first! | |
minikube start --container-runtime=cri-o | |
minikube dashboard --url | |
##learn on how to use kubectl | |
kubectl config view | |
kubectl cluster-info |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment