Commit Graph

1732 Commits (dec0742f87d4a4444b019ce7e80dfb453803f81c)

Author SHA1 Message Date
Dongsu Park c58e5dd10f test: check stopped status repeatedly
In TestStartStop(), check for stopped status once in 5 seconds,
up to 30 seconds, instead of always sleeping for 30 seconds
before stopping it. That way we can reduce duration of the test.

To do that, we need to split out MinikubeRunner.CheckStatus() into
CheckStatusNoFail() that doesn't lead to T.Fatalf(). Other call sites
of CheckStatus() would not be then affected.
2017-02-10 20:27:54 +01:00
Tom von Schwerdtner ef8a134495 Use backticks inline instead of $(shell ...)
On the initial build run on a new system, the $(shell ...) variant fails
to provide any output for inline substitution and you end up with the
error:

```
gpg: `--verify-files' is not a valid long keyID
```

Using backticks will provide the desired output on the first run on a
system.
2017-02-10 14:10:18 -05:00
Matt Rickard f52805360d Merge pull request #1109 from endocode/dongsu/err-msg-newline
Add missing newline chars to error messages
2017-02-10 09:56:38 -08:00
Aaron Prindle 2f02060355 Merge pull request #1104 from aaron-prindle/minikube-home-env-var
Added MINIKUBE_HOME env variable which sets .minikube directory
2017-02-09 11:52:57 -08:00
Aaron Prindle c418095c38 Added MINIKUBE_HOME env variable which sets .minikube directory 2017-02-09 11:07:44 -08:00
dlorenc ab9cbf7ec0 Merge pull request #1091 from aaron-prindle/start-progress
Added additional print statements to minikube start
2017-02-09 10:57:42 -08:00
dlorenc 47bfae3e9a Merge pull request #1108 from aaron-prindle/fix-registry-creds-addon
Fix GCR in registry-creds addon
2017-02-09 10:50:21 -08:00
Dongsu Park 2976ae28af Add missing newline chars to error messages
Several error messages don't print out newline characters at the end,
for example:

```
$ minikube addons open dashboard
This addon does not have an endpoint defined for the 'addons open' command
You can add one by annotating a service with the label kubernetes.io/minikube-addons-endpoint:dashboard$
```
2017-02-09 17:29:39 +01:00
Matt Rickard d9355d89e7 Merge pull request #1074 from r2d4/release-iso
Add release-iso Makefile rule
2017-02-08 18:40:59 -08:00
Aaron Prindle f5e692a6f6 Fix GCR in registry-creds addon 2017-02-08 16:16:07 -08:00
Matt Rickard 54457107ab Merge pull request #1098 from GheRivero/dns-systemd
Ignore dns settings for docker-machines network
2017-02-08 12:12:25 -08:00
dlorenc 0e20ad02af Merge pull request #1105 from puja108/patch-1
fixed RBAC example in README
2017-02-08 09:45:05 -08:00
Puja 3bfa24f3c7 fixed RBAC example
The RBAC example with SuperUser flag was missing a comma, which made minikube fail starting up (even when it didn't report an error). Tested with minikube v0.16.0
2017-02-08 14:55:54 +01:00
Matt Rickard 1368e7a02d Merge pull request #1102 from bfallik/patch-1
Update README.md
2017-02-07 14:05:00 -08:00
Matt Rickard f357f9639f Merge pull request #1101 from r2d4/roadmap-update
Update roadmap for Q1-17
2017-02-07 13:00:53 -08:00
Brian Fallik 113aeec833 Update README.md
add missing apostrophe
2017-02-07 15:05:19 -05:00
Matt Rickard 1548cb78e9 Merge pull request #1050 from r2d4/vendor-drivers-1
Add LocalClient to bypass RPC
2017-02-07 10:31:40 -08:00
Matt Rickard 39bb13346a Update roadmap for Q1-17 2017-02-07 09:34:15 -08:00
Matt Rickard b9a115b3ae Add LocalClient to bypass RPC for drivers
This adds a new libmachine API implementation that skips RPC and instead
uses a vendored in driver directly.  This removes the need to download a
separate driver binary.  Currently, only the "core" drivers, and kvm are
supported as vendored in.  This means that xhyve is the only driver that
requires a separate binary for now.
2017-02-06 21:17:22 -08:00
dlorenc f178979f14 Merge pull request #1069 from aaron-prindle/document-godep-windows-issue
Updated ADD_DEPENDENCY.md to include godep issue with vendor/golang.o…
2017-02-06 15:50:20 -08:00
Ghe Rivero 198ebe7bf1 Ignore dns settings for docker-machines network 2017-02-07 00:46:08 +01:00
Matt Rickard 663819295f Merge pull request #1097 from r2d4/0.16-aur
Update arch linux installer to minikube 0.16
2017-02-06 10:41:00 -08:00
Matt Rickard aebe2852d3 Update arch linux installer to minikube 0.16 2017-02-06 10:40:42 -08:00
Aaron Prindle 7d30b4bf18 Added additional print statements to minikube start 2017-02-04 14:53:53 -08:00
Aaron Prindle 656e85dfb9 Merge pull request #1081 from metmajer/master
Make heapster service available via NodePort.
2017-02-03 12:35:11 -08:00
Matt Rickard a080737eff Add release-iso Makefile rule
This also tracks the ISO version in the makefile and passes it with
ldflags to automatically bump the default version in the minikube
binary.
2017-02-03 12:01:32 -08:00
dlorenc ae14b68c2e Merge pull request #1084 from kjkurtz/patch-1
Update README.md with correct spelling of requests
2017-02-03 09:23:32 -08:00
Kyle Kurtz 88f5af3515 Update README.md with correct spelling of requests 2017-02-03 11:01:32 -06:00
Matt Rickard 4a81f78309 Merge pull request #1082 from chrisns/patch-1
fix trivial typo in ADD_ADDON.md
2017-02-03 08:31:52 -08:00
Matt Rickard a0c49ffad6 Merge pull request #1083 from ensonic/master
Mention prerequisites for building the iso images.
2017-02-03 08:30:49 -08:00
Stefan Sauer 118b5b845a Mention prerequisites for building the iso images.
Add the tools that I had missing. Also describe minimal gpg2 setup.
2017-02-03 12:17:24 +01:00
Chris Nesbitt-Smith d9e2cc51a0 fix trivial typo in ADD_ADDON.md
`minkube > minikube`
2017-02-03 09:50:55 +00:00
Martin Etmajer 4fdac2bd98 Make heapster service available via NodePort. 2017-02-03 10:50:31 +01:00
dlorenc ac10a9f1e8 Merge pull request #1079 from minikube-bot/jenkins-releases.json-v0.16.0
update releases.json to include v0.16.0
2017-02-02 17:05:20 -08:00
minikube-bot fa96bc0232 Update releases.json to include v0.16.0 2017-02-03 00:07:35 +00:00
Matt Rickard 5daf47288e Merge pull request #1078 from r2d4/16release
Cut 0.16 Release
2017-02-02 15:55:04 -08:00
Matt Rickard f941e0669d Cut 0.16 Release 2017-02-02 15:02:07 -08:00
Matt Rickard 7ea9da0372 Merge pull request #1076 from dlorenc/iso
Bump the iso to 1.0.6
2017-02-02 14:25:25 -08:00
dlorenc e75daa5a8b Bump the iso to 1.0.6 2017-02-02 13:15:15 -08:00
Matt Rickard e160757357 Merge pull request #1075 from r2d4/servicesmock
Embed mock service interface from client-go
2017-02-02 11:38:08 -08:00
Matt Rickard 6617911826 Merge pull request #1065 from dlorenc/packages
Add git, curl and rsync.
2017-02-02 11:02:21 -08:00
Matt Rickard b638b101a2 Embed mock service interface from client-go
We use the default implementation by embedding fake.FakeServices which
implements ServiceInterface.
2017-02-02 10:56:51 -08:00
Matt Rickard 4746cdbc88 Merge pull request #1073 from ensonic/master
Enable CONFIG_TUN.
2017-02-02 08:49:27 -08:00
Matt Rickard 4dadc79a43 Merge pull request #1053 from r2d4/iso-downloader
Move iso download funcs to interface for testing
2017-02-01 16:40:24 -08:00
dlorenc 2d90617d4f Merge pull request #1071 from dlorenc/isotesting
Add a test for required packages.
2017-02-01 16:39:49 -08:00
dlorenc 220a5ad840 Add a test for required packages. 2017-02-01 16:06:05 -08:00
Matt Rickard 69113ff21d Merge pull request #1068 from r2d4/issues
Update issue tmpl, add iso version, remove docker version
2017-02-01 16:02:32 -08:00
dlorenc 2e86f0f3c5 Add git, curl and rsync. 2017-02-01 14:56:58 -08:00
Aaron Prindle db02f1fe28 Updated ADD_DEPENDENCY.md to include godep issue with vendor/golang.org/x/sys/windows/ dir 2017-02-01 13:25:56 -08:00
Matt Rickard c879548d1a Update issue tmpl, add iso version, remove docker version 2017-02-01 13:02:20 -08:00