Commit Graph

484 Commits (5e16101aab754ebbc3a1e6cc900e8e8e7002ce1c)

Author SHA1 Message Date
Random-Liu 52c3664eb7 Bump up engine-api version. 2016-04-29 13:32:19 -07:00
Stef Walter 481dbca8bc Fix use of docker removed ParseRepositoryTag() function
Docker has removed the ParseRepositoryTag() function in
leading to failures using the kubernetes Go client API.

Lets use github.com/docker/distribution reference.ParseNamed()
instead.

Failure:

../k8s.io/kubernetes/pkg/util/parsers/parsers.go:30: undefined: parsers.ParseRepositoryTag
2016-04-25 11:37:10 +02:00
Andy Goldstein 04da473594 Add docker/distribution to Godeps
Use docker/distribution to parse image refs

Signed-off-by: Stef Walter <stefw@redhat.com>
 * Added files required by hack/verify-godeps.sh
2016-04-25 11:27:07 +02:00
Euan Kemp 82f3ec14fb Godeps: vendor gomock 2016-04-22 15:34:55 -07:00
Euan Kemp 03f3f42055 Godeps: Update rkt to v1.4.0 2016-04-22 15:34:55 -07:00
Tim St. Clair c4eacd3b76 Update cadvisor godeps 2016-04-21 15:14:19 -07:00
Tim St. Clair 903067c6c2 Update go-dockerclient godeps
Update go-dockerclient license
2016-04-21 15:14:19 -07:00
k8s-merge-robot 5f3f06f0b1 Merge pull request #24022 from hongchaodeng/dep
Automatic merge from submit-queue

Bump up etcd dependency to fix data race

ref: https://github.com/kubernetes/kubernetes/pull/23694

What this PR does
- Bumping up the godep of etcd to fix data race in etcd watcher. Without this change, watcher PR builds will fail in race detection.
- Small changes to fix builds after upgrade
2016-04-17 12:01:32 -07:00
Hongchao Deng 3c2c9067e8 update godep license 2016-04-18 00:28:56 +08:00
Mike Danese 774b6d484d fix the build 2016-04-15 10:18:58 -07:00
Daniel Smith 84e49854e1 Merge pull request #24129 from uruddarraju/gorestgodep
Updating go-restful dependency to fix thirdparty issues
2016-04-14 11:25:22 -07:00
k8s-merge-robot e121b562c5 Merge pull request #23262 from sttts/sttts-bash-completion-flag-equal
Automatic merge from submit-queue

Make kubectl bash-completion namespace and resource alias aware

![kubectl-completion](https://cloud.githubusercontent.com/assets/730123/13912456/94abf9a2-ef3d-11e5-9c8a-3df7058ea8f0.gif)

- filter resource listing by `--namespace` flag given before in the command line
```bash
$ kubectl get pod --namespace=kube-system <tab><tab>
kube-dns-v9-2wuzj   kube-dns-v9-llqxa
```
- add completion of `--namespace`
```bash
$ kubectl get pod --namespace=<tab><tab>
[*]         default      ingress      kube-system
```

- add support for plural nouns and aliases like `rc`
2016-04-14 04:26:40 -07:00
Ruddarraju, Uday Kumar Raju 6df648d018 Updating go-restful dependency to fix thirdparty 2016-04-12 02:06:26 -07:00
Thomas Liu a57bba498f Bump up yaml.v2 version 2016-04-11 17:07:45 -07:00
Hongchao Deng 2f43fbc6c7 bump up etcd dep to fix watcher race 2016-04-07 19:22:27 -07:00
Dr. Stefan Schimanski 8af3be87e4 Update cobra godep 2016-04-03 16:25:56 +02:00
k8s-merge-robot b43ccd6e2b Merge pull request #23506 from Random-Liu/new-docker-client
Automatic merge from submit-queue

Kubelet: Start using the official docker engine-api

For #23563.

This is the **first step** in the roadmap of switching to docker [engine-api](https://github.com/docker/engine-api).
In this PR, I keep the old `DockerInterface` and implement it with the new engine-api.
With this approach, we could switch to engine-api with minimum change, so that we could:
* Test the engine-api without huge refactoring.
* Send following PRs to refactor functions in `DockerInterface` separately so as to avoid a huge change in one PR.

I've tested this PR locally, it passed all the node conformance test:
```
make test_e2e_node

Ran 19 of 19 Specs in 823.395 seconds
SUCCESS! -- 19 Passed | 0 Failed | 0 Pending | 0 Skipped PASS

Ginkgo ran 1 suite in 13m49.429979585s
Test Suite Passed
```
And it also passed the jenkins gce e2e test:
```
go run hack/e2e.go -test -v --test_args="--ginkgo.skip=\[Slow\]|\[Serial\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]"

Ran 161 of 268 Specs in 4570.214 seconds
SUCCESS! -- 161 Passed | 0 Failed | 0 Pending | 107 Skipped PASS

Ginkgo ran 1 suite in 1h16m16.325934558s
Test Suite Passed
2016/03/25 15:12:42 e2e.go:196: Step 'Ginkgo tests' finished in 1h16m18.918754301s
```

I'm writing the design document, and will post the switching roadmap in an umbrella issue soon.

@kubernetes/sig-node
2016-04-02 04:51:33 -07:00
k8s-merge-robot d807690c39 Merge pull request #23387 from hongchaodeng/e
Automatic merge from submit-queue

storage.Interface KV impl. of etcd v3

This is the initial implementation of #22448.

The PR consists of two parts:
- add godep of "clientv3" and "integration" (for testing)
- create new package "etcd3" under "pkg/storage/"
- implement KV methods of storage.Interface using etcd v3 APIs
  - Create, Set, Get, Delete, GetToList, List, GuaranteedUpdate
2016-03-31 11:46:43 -07:00
Alex Robinson cd0caf5312 Merge pull request #23501 from a-robinson/md
Update our GCP metadata dependency to include a recent flakiness improvement
2016-03-30 09:51:52 -07:00
Hongchao Deng e2ef27ee8a godep: add clientv3 and integration 2016-03-29 19:15:50 -07:00
Yifan Gu b65a2ceb87 Godeps: Bump rkt API. Run hack/update-godep-licenses.sh 2016-03-28 17:06:14 -07:00
Random-Liu a6b4378df8 Update Godeps 2016-03-28 15:39:11 -07:00
Alex Robinson 6195c57b2e Update our GCP metadata dependency to include a recent flakiness improvement. 2016-03-28 18:12:38 +00:00
k8s-merge-robot 5cb94cfab1 Merge pull request #23302 from spxtr/unittest-1.6
Auto commit by PR queue bot
2016-03-26 11:56:54 -07:00
David McMahon 47ee746fcc Merge pull request #23364 from david-mcmahon/godep-licenses
Write a parallel (godeps) _workspace tree to hold all the missing files.
2016-03-24 15:35:50 -07:00
k8s-merge-robot 050980b472 Merge pull request #23131 from AlbertoPeon/up_gophercloud
Auto commit by PR queue bot
2016-03-23 05:36:21 -07:00
David McMahon 2c5ece3534 Updated Godeps/LICENSES and new Godeps/_workspace_aux/ license files. 2016-03-22 16:50:40 -07:00
k8s-merge-robot 8c02a46c4d Merge pull request #22486 from thockin/update-gcfg-dep
Auto commit by PR queue bot
2016-03-21 18:47:21 -07:00
Joe Finney c8c2c58afd Bump spew godep to make hash tests pass on go 1.6. 2016-03-21 15:27:34 -07:00
Marcin c158d48118 Update Godeps/LICENSES 2016-03-21 10:46:46 +01:00
Hongchao Deng 16a7aae032 godep: bump up etcd to use V3 API 2016-03-18 23:39:47 -07:00
Alberto Peon 19c1f43215 Update gophercloud 2016-03-17 16:42:28 +01:00
Tim Hockin a073c80e45 Use newer home for gcfg package
Switch from obsolete "github.com/scalingdata/gcfg" to "gopkg.in/gcfg.v1".
2016-03-16 08:42:08 -07:00
Vishnu Kannan 750c089e63 Updating cadvisor deps to v0.22.2
Signed-off-by: Vishnu Kannan <vishnuk@google.com>
2016-03-15 15:50:19 -07:00
k8s-merge-robot 747040582b Merge pull request #22892 from ixdy/verify-all
Auto commit by PR queue bot
2016-03-12 04:33:17 -08:00
k8s-merge-robot afba2f75d1 Merge pull request #22803 from derekwaynecarr/update_cadvisor
Auto commit by PR queue bot
2016-03-11 21:52:21 -08:00
Jeff Grafton 8b2ecf4a94 Use LC_ALL=C with the other sort call in update-godep-licenses.sh
Also update LICENSES based on this ordering.
2016-03-11 17:29:51 -08:00
k8s-merge-robot 5d58c74398 Merge pull request #22304 from ericchiang/bump_go_oidc
Auto commit by PR queue bot
2016-03-11 02:57:09 -08:00
k8s-merge-robot 5e50302a55 Merge pull request #22804 from ncdc/bump-spdystream
Auto commit by PR queue bot
2016-03-11 02:18:25 -08:00
Eric Paris 503af7d044 Update Godep/LICENSES
So hopefully travis will be happy....
2016-03-10 14:07:10 -05:00
derekwaynecarr 572dd3763b bump cadvisor to v0.22.1 2016-03-10 13:33:13 -05:00
Andy Goldstein 36243b8081 bump(github.com/docker/spdystream): 449fdfce4d962303d702fec724ef0ad181c92528 2016-03-10 13:02:23 -05:00
k8s-merge-robot 3881fa2f3a Merge pull request #22105 from timstclair/godeps
Auto commit by PR queue bot
2016-03-05 11:27:00 -08:00
k8s-merge-robot d81d823ca5 Merge pull request #22393 from eparis/blunderbuss
Auto commit by PR queue bot
2016-03-02 18:51:56 -08:00
Eric Paris 5e5a823294 Move blunderbuss assignees into tree 2016-03-02 20:46:32 -05:00
k8s-merge-robot 6dbdcfe78f Merge pull request #22116 from david-mcmahon/license-tool
Auto commit by PR queue bot
2016-03-02 07:14:40 -08:00
David McMahon ffeaef6201 New Godeps LICENSE generation tool.
Includes initial Godeps/LICENSES and Godeps/.license_file_state file to ensure
fast local generation.
2016-03-01 18:16:09 -08:00
Vishnu kannan 92f37d2e56 Update cadvisor to v0.22.0
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-03-01 15:23:32 -08:00
Eric Chiang 3df0ca5bf9 Godeps: update coreos/go-oidc to remove net/http/httptest import
Updates #21114
2016-03-01 11:11:57 -08:00
Tim St. Clair 9da747dea1 Update mesos godeps to remove transient dependency on testify/mock 2016-02-26 17:26:43 -08:00
goltermann 30e75be5a9 Update flocker-go godep to pick up new LICENSE file. 2016-02-22 16:17:54 -08:00
k8s-merge-robot 9b395b558e Merge pull request #15476 from burmanm/hawkular_save
Auto commit by PR queue bot
2016-02-20 19:09:18 -08:00
deads2k 03d66e083a bump(github.com/hashicorp/golang-lru): a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4 2016-02-19 13:47:43 -05:00
k8s-merge-robot dd6cc9239d Merge pull request #21198 from mesosphere/jdef_update_mgo_latest
Auto commit by PR queue bot
2016-02-16 06:37:42 -08:00
Jordan Liggitt 056ef49c76 bump(github.com/ugorji/go): 1e4b55517031c729d47ad7397bbc4ce36646166e 2016-02-13 09:15:39 -05:00
James DeFelice 6c25f3711e update to latest mesos-go for master failover improvements 2016-02-13 13:57:36 +00:00
Michael Burman 528be97b41 Hawkular support for the Initial Resources 2016-02-12 17:36:11 +02:00
Random-Liu fe710d9197 Bump up version for go-dockerclient/#455 2016-02-09 10:31:19 -08:00
k8s-merge-robot b3744a5211 Merge pull request #20831 from jonboulle/yifan-gu-bump_rkt
Auto commit by PR queue bot
2016-02-09 05:41:56 -08:00
k8s-merge-robot 8fcc105d6d Merge pull request #20444 from ncdc/flake/19466
Auto commit by PR queue bot
2016-02-08 20:46:03 -08:00
Jordan Liggitt 6445aaadcc bump(ugorji/go): 4a79e5b7b21e51ae8d61641bca20399b79735a32 2016-02-08 15:45:04 -05:00
Yifan Gu ead87d4f06 Godeps: Bump rkt api, go grpc, go protobuf. 2016-02-08 19:29:40 +01:00
k8s-merge-robot b73f83d904 Merge pull request #20546 from luxas/update_godep_arm64
Auto commit by PR queue bot
2016-02-06 08:49:17 -08:00
k8s-merge-robot 1eff1d52e2 Merge pull request #20033 from bparees/dockerclient_bump
Auto commit by PR queue bot
2016-02-05 19:37:22 -08:00
Vishnu kannan 849f06c51c Updating cadvisor tag to v0.21.1
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-02-05 17:35:08 -08:00
Lucas Käldström ba5608a7e4 Update ginkgo and bolt Godeps so k8s builds on ARM64 2016-02-03 08:31:49 +02:00
k8s-merge-robot ac24a68801 Merge pull request #20094 from mesosphere/jdef_mesos_026_godeps
Auto commit by PR queue bot
2016-02-02 03:19:25 -08:00
k8s-merge-robot 171c2ecbe7 Merge pull request #19524 from derekparker/rkt-image-size
Auto commit by PR queue bot
2016-02-01 11:53:36 -08:00
Andy Goldstein b795a1021d bump(docker/spdystream):106e140db2cb50923efe088bf2906b2ee5a45fec 2016-02-01 12:22:18 -05:00
Marcin Wielgus a14f791d8c Revert "Merge pull request #20329 from kubernetes/revert-20323-bump-influxdb"
This reverts commit b4188ec459, reversing
changes made to 28951bd66a.
2016-02-01 12:12:37 +01:00
Alex Robinson ae5a6e86df Merge pull request #20137 from mqliang/fake-time
reuse fake clock in the kube repo for kubelet unit tests
2016-01-30 16:37:44 -08:00
Jimmi Dyson 1c289943f5 Ensure kubelet pid is not moved to system container 2016-01-29 09:30:20 +00:00
Fabio Yeon da19f81e0a Merge pull request #19739 from vishh/cadvisor-v0.20.2
Updating cAdvisor deps to v0.20.4
2016-01-28 16:45:55 -08:00
Filip Grzadkowski 471e602bcd Merge pull request #20155 from mwielgus/update-heapster-api
Update Heapster API in Godeps
2016-01-28 14:14:27 +01:00
Marcin Wielgus b49cba7182 Update Heapster API in Godeps 2016-01-28 11:55:22 +01:00
James DeFelice 54439b5edc updated mesos-go, stretchr/testify, and dependent godeps 2016-01-27 17:13:04 +00:00
Filip Grzadkowski 0dedf869c7 Revert "Bumped Heapster version to v0.20.0-alpha and Influxdb to 0.9.2.1" 2016-01-27 17:22:36 +01:00
Piotr Szczesniak 4839f18290 Fixed licenses file 2016-01-27 13:06:58 +01:00
Piotr Szczesniak 331318b3fe Bumped Influxdb client to v0.9.2.1 2016-01-27 11:09:17 +01:00
Chao Xu 8887d66815 run update-godep-licenses.sh 2016-01-26 17:01:37 -08:00
Chao Xu d85823b051 update godep 2016-01-26 17:01:37 -08:00
Vishnu kannan 9755c06c58 update godeps licence file
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-01-26 12:19:25 -08:00
mqliang c9f4f78273 reuse fake clock in the kube repo for kubelet unit tests 2016-01-26 23:42:00 +08:00
Ben Parees 45a4b4c3bb bump(github.com/fsouza/go-dockerclient) 25bc220b299845ae5489fd19bf89c5278864b050 2016-01-26 09:38:18 -05:00
k8s-merge-robot a9bd443a5f Merge pull request #20107 from eparis/fix-godep
Auto commit by PR queue bot
2016-01-25 19:33:48 -08:00
Vishnu kannan 7866ffa71c Update cadvisor deps to v0.20.4
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-01-25 17:24:07 -08:00
Eric Paris f32d7f039b Update Godeps/LICENSES.md as it seems out of date or something... 2016-01-25 15:49:07 -05:00
Eric Paris 886f19f392 Fix Godeps since godep binary keeps changing 2016-01-25 15:44:03 -05:00
Brendan Burns 61ff7475a8 Add a stray dependency that was missing due to godep update 2016-01-25 10:05:29 -08:00
Brendan Burns 8da756f2ff Update the docker/spdystream dependency 2016-01-25 09:43:00 -08:00
Rudi Chiarito aa5e3ab4ca Add ECR dependencies and refresh Godeps 2016-01-22 15:03:25 -05:00
Alex Mohr 1eabef0388 Merge pull request #19794 from mesosphere/jdef_fix_19672_camlistore_godeps
updated appc/spec and camlistore/ godeps to fix broken godep restore
2016-01-21 12:04:56 -08:00
k8s-merge-robot e2c79915fd Merge pull request #18820 from mqliang/image-gc-bug
Auto commit by PR queue bot
2016-01-21 01:22:29 -08:00
k8s-merge-robot 2a79ac4a31 Merge pull request #18322 from mesosphere/licenses
Auto commit by PR queue bot
2016-01-19 17:17:17 -08:00
James DeFelice 569712c72b updated appc/spec and camlistore/ godeps to fix broken godep restore 2016-01-18 17:00:55 +00:00
k8s-merge-robot 37945771dc Merge pull request #19478 from mfojtik/go-dockerclient-bump
Auto commit by PR queue bot
2016-01-16 20:40:47 -08:00
k8s-merge-robot 4969f11089 Merge pull request #19439 from bprashanth/compute_dep
Auto commit by PR queue bot
2016-01-16 10:38:11 -08:00
Mike Danese aa502874c4 godeps: update github.com/kr/pty
Signed-off-by: Mike Danese <mikedanese@google.com>
2016-01-15 10:56:52 -08:00
combk8s 5b383dad62 fix image gc bug 2016-01-15 16:43:22 +08:00
Karl Isenberg 6125f539b6 Add hack/update-godep-licenses.sh to generate Godeps/LICENSES.md
- Add Godeps/LICENSES.md
- Add verify-godep-licenses to verify that Godeps/LICENSES.md is up to date
- Trigger verify-godep-licenses in the pre-commit hook only if the Godeps dir has changed
- Exclude verify-godep-licenses in verify-all
- Add verify-godep-licenses to make verify (used by travis)
- Add verify-godep-licenses to shippable
- Update dev docs to mention update-godep-licenses
2016-01-14 09:05:25 -08:00