Last active
December 16, 2018 23:05
-
-
Save llipe/b9a78430e84d2d09812e08a9cb526052 to your computer and use it in GitHub Desktop.
This file contains 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
# Minikube start | |
minikube start --vm-driver=hyperkit | |
# specify context | |
kubectl config use-context minikube | |
# get cluster info to verify kubectl is configured | |
kubectl cluster-info | |
minikube dashboard | |
# set the docker daemon to minikube | |
eval $(minikube docker-env) | |
# get minikube's cluster for the service | |
# minikube service [-n NAMESPACE] [--url] NAME | |
# Ref: https://github.com/kubernetes/minikube | |
minikube service web --url |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment