Commit Graph

3543 Commits (51643bba7880f46db5f9dc235559702409fb378c)

Author SHA1 Message Date
Lucas Käldström a90828141f Merge pull request #124 from dlorenc/addons
Configure capabilities explicitly before starting localkube.
2016-05-27 21:29:53 +03:00
Dan Lorenc 01b76efc7f Configure capabilities explicitly before starting localkube.
There's a race condition in the current capability initialization. These
can only be configured once per binary, so if the APIServer goroutine
sets it first the kubelet goroutine can never change this value.
2016-05-27 11:10:38 -07:00
dlorenc 9e43fa1e1a Merge pull request #122 from dlorenc/stop
Add missing sudo to the stop command.
2016-05-27 10:02:57 -07:00
Dan Lorenc a5f0ecb9df Add missing sudo to the stop command. 2016-05-27 09:52:32 -07:00
dlorenc b81291aae9 Merge pull request #108 from aaron-prindle/logs
finished logs functionality and tests
2016-05-27 09:42:58 -07:00
aprindle 706f974751 finished logs functionality and tests 2016-05-27 09:16:18 -07:00
Lucas Käldström 77919b82b0 Merge pull request #121 from dlorenc/python
Use system python if it exists in the Makefile.
2016-05-27 15:26:51 +03:00
Dan Lorenc 7d39de128f Use system python if it exists in the Makefile. 2016-05-26 23:06:20 -07:00
dlorenc 941933179f Merge pull request #113 from luxas/static_localkube
Static localkube and some other things
2016-05-26 09:30:32 -07:00
Lucas Käldström f1af7387cc PR feedback and added python-in-docker for test.sh too 2016-05-26 18:55:15 +03:00
dlorenc a7c5b823eb Merge pull request #100 from dlorenc/readme
Update README.md with usage and known issues.
2016-05-26 08:42:40 -07:00
Lucas Käldström 82be2e6d20 Merge pull request #115 from dlorenc/stop
Make sure we stop the localkube binary before starting another instance.
2016-05-26 07:46:54 +03:00
dlorenc 7907fe816c Merge pull request #106 from dlorenc/conformance
Add instructions for running conformance tests.
2016-05-25 18:48:09 -07:00
Lucas Käldström 00d4152313 Rename some constants in constants.go to Default..., and break out more constants 2016-05-25 23:25:49 +03:00
Lucas Käldström 1a3ef791f9 Add a version command to minikube too 2016-05-25 23:24:12 +03:00
Lucas Käldström 0d64075bfb Remove cobra.yaml, as it's not used anymore 2016-05-25 23:23:44 +03:00
Lucas Käldström db5dc1b24e Build localkube statically, use a python container to remove the python dep on the build env, and use kube-cross for building on non-linux 2016-05-25 23:23:12 +03:00
dlorenc d8e12ef42b Make sure we stop the localkube binary before starting another instance.
This makes "minikube start" re-entrant.
2016-05-25 13:05:30 -07:00
Lucas Käldström 647124b7c7 Merge pull request #111 from dlorenc/wait
Fix a flake in sshutil.
2016-05-25 22:19:21 +03:00
Lucas Käldström 9be5be38b9 Merge pull request #109 from dlorenc/isourl
Switch to using a versioned ISO url.
2016-05-25 22:18:03 +03:00
dlorenc 9bfcf74d04 Merge pull request #112 from dlorenc/dashbord
Include the cluster local IP. This enables the dashboard to work.
2016-05-25 11:25:16 -07:00
Dan Lorenc 1d6eff6d7a Include the cluster local IP. This enables the dashboard to work. 2016-05-25 10:48:56 -07:00
dlorenc a8b12f7d78 Switch to using a versioned ISO url. 2016-05-25 08:43:13 -07:00
Dan Lorenc 91037931a4 Fix a flake in sshutil.
We have to wait for the copy to finish before returning, otherwise the readers might go out of scope.
https://travis-ci.org/kubernetes/minikube/builds/132822322
2016-05-25 07:01:20 -07:00
dlorenc 299e049ba7 Update README.md with usage and known issues. 2016-05-25 06:35:30 -07:00
Lucas Käldström 4561a4d148 Merge pull request #107 from dlorenc/machine
Update libmachine code to pick up misc. bug fixes.
2016-05-25 14:47:10 +03:00
Lucas Käldström 54b559f6ca Merge pull request #104 from dlorenc/gopath
Switch from .gopath to _gopath to be consistent with kubernetes.
2016-05-25 14:46:11 +03:00
Dan Lorenc 2858ff3b3e Check boilerplate in all files.
Also fix misisng boilerplate.
2016-05-24 21:57:16 -07:00
dlorenc 14c1db2388 Update libmachine code to pick up misc. bug fixes. 2016-05-24 13:54:39 -07:00
dlorenc c74d4508ff Add instructions for running conformance tests. 2016-05-24 11:30:25 -07:00
dlorenc 5cdb140b31 Switch from .gopath to _gopath to be consistent with kubernetes. 2016-05-24 10:54:24 -07:00
Lucas Käldström 95498a23dd Merge pull request #102 from dlorenc/privileged
Allow privileged pods.
2016-05-24 17:49:57 +03:00
Dan Lorenc e5c3564f9e Allow privileged pods. 2016-05-23 18:12:52 -07:00
dlorenc a4150c2523 Merge pull request #97 from aaron-prindle/env
added env functionality and tests
2016-05-23 15:15:23 -07:00
aprindle 8f1c2e0647 added env functionality and tests 2016-05-23 14:18:25 -07:00
Lucas Käldström bb948fd735 Merge pull request #98 from dlorenc/godeps
Update k8s.io components to efc5bbc9e.
2016-05-23 22:39:05 +03:00
dlorenc 0552f504dd Update k8s.io components to efc5bbc9e.
A manual change was required in kube2sky.go.
Updates were required in appc/spec and a few other libraries.
2016-05-23 11:27:28 -07:00
Lucas Käldström d4c23777ed Merge pull request #90 from dlorenc/race
Fix race condition in cluster setup.
2016-05-23 08:35:57 +03:00
Dan Lorenc 43f5851e6d Fix race condition in cluster setup.
We now explicitly generate certs before starting the cluster.
2016-05-22 14:21:10 -07:00
Lucas Käldström 7d17bee24d Merge pull request #86 from dlorenc/ip
Add a command to retrieve the running IP.
2016-05-22 23:50:31 +03:00
Lucas Käldström 2cee5ca3c9 Merge pull request #81 from dlorenc/version
Set the k8s version strings during build.
2016-05-22 13:29:53 +03:00
Lucas Käldström 5ab4f230e6 Merge pull request #95 from dlorenc/test
Fix test.sh to run on mac.
2016-05-20 21:56:02 +03:00
dlorenc f34e34fa20 Fix test.sh to run on mac.
The find command errors on Mac. This uses "go list", which should
be easier to maintain going forward.

Also switch to one "go test" execution with many paths. This lets
go test parallelize more effectively, and cuts the runtime down
from 2.5m to 1.5m on my workstation.
2016-05-20 11:44:45 -07:00
dlorenc 301eb44838 Merge pull request #96 from dlorenc/save
Fix bug in start.
2016-05-19 16:47:17 -07:00
dlorenc cae9bc41ab Fix bug in start.
We have to call save after start, because the IP/port might change.
2016-05-19 14:40:56 -07:00
Dan Lorenc e6eb9b6dee Add a test for the new IP command. 2016-05-19 13:06:34 -07:00
Dan Lorenc 41cc002233 IP command. 2016-05-19 13:06:34 -07:00
dlorenc 926a425289 Remove unused string. 2016-05-19 10:03:26 -07:00
Dan Lorenc a0fc571b06 Add gitTreeState argument. 2016-05-19 10:00:24 -07:00
Dan Lorenc 3bf1d4e1f5 Set the k8s version strings during build. 2016-05-19 10:00:24 -07:00