Commit Graph

2067 Commits (c9f99ece2cb2c4aa7e545e12435c2e3c184352c6)

Author SHA1 Message Date
Thomas Strömberg f773c4ba45
Merge pull request #5837 from tstromberg/v1.17.0
Update NewestKubernetesVersion to v1.17.0-beta.1
2019-11-06 14:06:27 -08:00
Sharif Elgamal 6ff68709dd
Merge pull request #5243 from rajalokan/remove-heapster
Remove heapster addon
2019-11-06 11:35:35 -08:00
Thomas Strömberg a583cbec13
Merge pull request #5839 from tstromberg/vbox-be-quiet
Silence virtualbox registry check
2019-11-05 14:47:32 -08:00
tstromberg 858fa57f79 Silence virtualbox registry check 2019-11-05 14:22:13 -08:00
Thomas Strömberg fa4b049593
Merge pull request #5805 from priyawadhwa/speedup-apiserver
Store kubernetes clientset when waiting for apiserver
2019-11-05 13:31:48 -08:00
Thomas Stromberg 79c94fba4c Merge go.mod 2019-11-05 13:24:29 -08:00
Thomas Stromberg 187e18d604 Upgrade newest to v1.17.0-beta.1 2019-11-05 13:21:19 -08:00
Anders F Björklund 3ac263f6e3 Simplify the RunCmd test for cruntime 2019-11-01 19:19:10 +01:00
Anders F Björklund df1175f51f Merge branch 'master' into reportcard-again 2019-11-01 18:32:37 +01:00
Priya Wadhwa b9562c5192 Store kubernetes clientset when waiting for apiserver
While looking at pprof data, I noticed that the line:

```go
client, err = k.client(k8s)
```

takes around .9 seconds to complete. Previously, we were calling it on
every iteration of the waitFor loop. Instead, if we store the clienset once
we have it, we should be able to speed up this function.

During local testing, this optimization reduced time spent waiting for
the apiserver by 13 seconds on average.
2019-10-31 13:56:46 -07:00
tstromberg f60764b07f service: fix --url mode, add integration tests 2019-10-30 10:44:54 -07:00
Thomas Strömberg ef398338d6
Merge pull request #5530 from medyagh/NewCmdRunner
Refactor command runner interface, allow stdin writes
2019-10-29 22:26:14 -07:00
Medya Gh 773c525ae7 fix test and remove extra code 2019-10-29 16:36:10 -07:00
Thomas Strömberg 983dc16c83
Merge pull request #5761 from tstromberg/ulimit
Set Docker open-files limit ( 'ulimit -n') to be consistent with other runtimes
2019-10-29 15:41:58 -07:00
tstromberg f6bd4df15c Address feedback 2019-10-29 14:21:53 -07:00
Medya Gh cd9e413852 resolve code review 2019-10-29 14:11:21 -07:00
Thomas Strömberg 74a5d477f2
Merge pull request #5718 from nanikjava/f-fix-test-disable-browser-test
Refactor to remove opening browser and just return url(s)
2019-10-29 13:51:33 -07:00
tstromberg 0b7a54079d Merge branch 'master' into ulimit 2019-10-29 12:04:04 -07:00
Thomas Stromberg f34b51db65 default-ulimit should be an arg, not an environment var 2019-10-29 07:56:31 -07:00
Thomas Stromberg 9bacb6a8e4 Remove test settings from buildroot 2019-10-28 22:33:18 -07:00
Thomas Stromberg 205376fc6d WIP: Consistently set 'ulimit -n' across runtimes 2019-10-28 22:31:57 -07:00
Thomas Strömberg b4ce29d589
Merge pull request #5757 from priyawadhwa/wait_false
Set --wait=false to default but still wait for apiserver
2019-10-28 21:52:15 -07:00
Nanik T 994d093766 Add boolean to disable opening browser during test
The WaitAndMaybeOpenService(..) method allow user to open the service
url in a browser when found, this create issue during testing as it's
opening browser and consuming resources.

The fix is to introduce a boolean flag allowing the caller to specify
whether to just print out the url or open a browser window
2019-10-29 13:23:41 +11:00
Priya Wadhwa bd5840aacf improve comments 2019-10-28 18:02:45 -07:00
Priya Wadhwa f3b1a09c36 Clean up bootstrapper interface to accept list of pods to wait for
when waiting for the cluster to start up.
2019-10-28 17:34:04 -07:00
Thomas Strömberg 58018eee85
Merge branch 'master' into f-fix-5329 2019-10-28 16:22:18 -07:00
Priya Wadhwa 993967bcc7 make sure we can get api server pod 2019-10-28 15:20:13 -07:00
Medya Gh 29a015b63f remove more bin bash c 2019-10-28 14:10:22 -07:00
Priya Wadhwa f92b308f9a Rebased on master 2019-10-28 10:46:35 -07:00
Priya Wadhwa 7900b63d2b Wait for only apiserver by default
This PR changes --wait=false to be the default, but to still check for the apiserver in this case. If wait=true, we still wait for all pods to be up and running. This change should speed up `minikube start`, since we won't have to wait for other pods which can take a longer time to start up.

Ref #5681
2019-10-28 10:45:57 -07:00
Medya Ghazizadeh e2bbf7111e
Merge branch 'master' into NewCmdRunner 2019-10-27 00:18:00 -07:00
Anders F Björklund 74e7b2c866 Fix compile error introduced by vmrun fix 2019-10-26 20:25:03 +02:00
Anders F Björklund 3c48985477 Make sure to look for vmrun, for vmware
Otherwise you risk trying to run VMware, just because the
docker-machine-driver-vmware driver has been installed...
2019-10-26 18:13:57 +02:00
Anders F Björklund d635b8dfc7 Add comments as requested by golint 2019-10-26 13:16:29 +02:00
Anders F Björklund 2b5663185f Run gofmt 2019-10-26 13:09:25 +02:00
Medya Gh 1b834df3e4 fix unit test 2019-10-25 17:17:27 -07:00
Medya Gh 792de2b0a1 resolve code review 2019-10-25 17:12:55 -07:00
Medya Gh 592ea158ee fix none docker test 2019-10-25 16:00:36 -07:00
Thomas Strömberg d32431efba
Merge pull request #5735 from tstromberg/gvisor-yiso
gvisor: Use chroot instead of LD_LIBRARY_PATH
2019-10-25 15:41:28 -07:00
Medya Gh 291731c5b2 change shellquote to args 2019-10-25 14:43:25 -07:00
tstromberg 9b2ce99723 Use chroot instead of LD_LIBRARY_PATH for containerd restart 2019-10-25 14:03:01 -07:00
Medya Gh 69dba7c052 Fix exec runner and remove some debug logging 2019-10-25 13:57:00 -07:00
Thomas Strömberg 80f0262dfe
Merge pull request #5731 from tstromberg/v1.16.2
Update default Kubernetes version to v1.16.2
2019-10-25 12:45:11 -07:00
tstromberg 416f132ebb Pass --expected-default-driver to the test rather than minikube
Improve VBoxManage detection on Windows

Add missing install_test
2019-10-25 10:43:30 -07:00
tstromberg d83b4e6f6c Update default Kubernetes version to v1.16.2 2019-10-25 10:21:12 -07:00
tstromberg d3618fb94c Merge branch 'drv-select2' of github.com:tstromberg/minikube into drv-select2 2019-10-25 09:58:07 -07:00
tstromberg 04acb598f5 Use virsh domcapabilites instead of virt-host-validate as it behaves more appropriately 2019-10-25 09:57:58 -07:00
Thomas Stromberg c50a849349 Add more debug logs 2019-10-24 20:34:38 -07:00
Thomas Stromberg c153919a56 Mark none driver as Linux only 2019-10-24 20:34:29 -07:00
Medya Gh 01573e4bda removed more bin bash calls 2019-10-24 17:07:52 -07:00