Created
August 29, 2016 23:46
-
-
Save hsaputra/4d8da2d42ae12e57f2d3df3ea08dd5db to your computer and use it in GitHub Desktop.
SSH to Minikube VM
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
You can ssh into the VM by finding the IP (from kubectl config view) and using username "docker" password "tcuser": | |
ssh [email protected] |
it worked
you can just do
minikube ssh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can just do
ssh docker@$(minikube ip)
with ip address fromminikube ip
command.