Go to file
Dan Lorenc 9dd515a6d7 Stop using localkubectl. Start localkube via ssh commands, outside the container. 2016-04-25 09:34:40 -07:00
Godeps Initial prototype using libmachine and localkubectrl. 2016-04-19 11:21:57 -07:00
cli Stop using localkubectl. Start localkube via ssh commands, outside the container. 2016-04-25 09:34:40 -07:00
vendor Initial prototype using libmachine and localkubectrl. 2016-04-19 11:21:57 -07:00
.cobra.yaml Initial commit of CLI using cobra scaffolding. 2016-04-18 10:40:41 -07:00
.gitignore Initial commit of CLI using cobra scaffolding. 2016-04-18 10:40:41 -07:00
LICENSE Update License file 2016-04-15 15:44:00 -07:00
README.md README additions. 2016-04-19 11:45:58 -07:00

README.md

minikube

Run Kubernetes locally

Build Instructions

go build cli/main.go

Run Instructions

Start the cluster with:

./main start
Starting local Kubernetes cluster...
2016/04/19 11:41:26 Machine exists!
2016/04/19 11:41:27 Localkube is already running
2016/04/19 11:41:27 Kubernetes is available at http://192.168.99.100:8080.
2016/04/19 11:41:27 Run this command to use the cluster: 
2016/04/19 11:41:27 kubectl config set-cluster localkube --insecure-skip-tls-verify=true --server=http://192.168.99.100:8080

Access the cluster with:

First run the command from above:

kubectl config set-cluster localkube --insecure-skip-tls-verify=true --server=http://192.168.99.100:8080

Then use kubectl normally:

kubectl get pods