Skip to content

Instantly share code, notes, and snippets.

@llipe
Last active December 16, 2018 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save llipe/b9a78430e84d2d09812e08a9cb526052 to your computer and use it in GitHub Desktop.
Save llipe/b9a78430e84d2d09812e08a9cb526052 to your computer and use it in GitHub Desktop.
# 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