Commit Graph

300 Commits

Author SHA1 Message Date
Kubernetes Publisher cd67d54b19 Merge pull request #50146 from gmarek/deepcopyinto
Automatic merge from submit-queue (batch tested with PRs 46512, 50146)

Make metav1.(Micro)?Time functions take pointers

Is there any reason for those functions not to be on pointers?

Kubernetes-commit: b59ad9cbfff866093a6c0ee26c3562e9ec9133e4
2017-08-29 13:16:17 +00:00
Renaud Gaubert cae6b9779a Updated gRPC version to support Keep Alive
Kubernetes-commit: faee6d6d5d0bf6d753a60c1338c6fbf17a2d956d
2017-08-29 13:16:17 +00:00
Kubernetes Publisher 6d1b3fd31d sync: reset Godeps/Godeps.json 2017-08-29 13:16:17 +00:00
Kubernetes Publisher edb9f8d8fd Merge pull request #50885 from CaoShuFeng/webhook_dead_code
Automatic merge from submit-queue (batch tested with PRs 50255, 50885)

remove dead code for cloner

I found some dead code in audit webhook backend.
This change do some clean work for: 2bbe72d4e0

**Release note**:
```
NONE
```

Kubernetes-commit: 2ba796fe47b3d17c5a385183d91a396aee580b87
2017-08-29 13:16:15 +00:00
Kubernetes Publisher 174f5f29a9 Merge pull request #50852 from guangxuli/fix_apiserver_register
Automatic merge from submit-queue (batch tested with PRs 50281, 50747, 50347, 50834, 50852)

fix incorrect logic in admission register

**What this PR does / why we need it**:
There is no issue for this PR, just fix incorrect logic in invocation `func (ps *Plugins) Register(name string, plugin Factory) ` after browsing the code accidentally.  And apparently, the logic exits potential panic.

**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #
no issue
**Special notes for your reviewer**:
none
**Release note**:
none

Kubernetes-commit: 1eb04f6a2a16b3b8642184db62719451c3e84d2a
2017-08-29 13:16:15 +00:00
Kubernetes Publisher 2321c45a71 Merge pull request #49115 from CaoShuFeng/audit_beta
Automatic merge from submit-queue (batch tested with PRs 49115, 47480)

Upgrade advanced audit to version v1beta1

This change does nothing but only upgrades advanced audit to version v1beta1.
There will be following up changes which does real effect to advanced audit feature.

After this change audit policy file should contain apiVersion and kind and has such format:
```
apiVersion: audit.k8s.io/v1alpha1
kind: Policy
rules:
  - level: None
```
or use the v1beta1 policy:
```
apiVersion: audit.k8s.io/v1beta1
kind: Policy
rules:
  - level: None
```
Updates #48561

**Release note**:

```
Upgrade advanced audit to version v1beta1.
```

Kubernetes-commit: 49bee177b22f331c11860b227b5cc7f9ff9ec07c
2017-08-29 13:16:14 +00:00
Kubernetes Publisher 4176c80429 Merge pull request #50681 from sttts/sttts-deepcopy-calls-apiserver
Automatic merge from submit-queue

apiserver: simplify deepcopy calls

Kubernetes-commit: 2d5624bb2c36e1918afd5d953275c5fae7e1ffd3
2017-08-29 13:16:13 +00:00
Kubernetes Publisher 10e9a53d92 Merge pull request #50553 from m1093782566/fed-kube-apiserver
Automatic merge from submit-queue (batch tested with PRs 49129, 50436, 50417, 50553, 47587)

add validation for fed-apiserver and apiserver run options

**What this PR does / why we need it**:

Add validation for fed-apiserver and apiserver run options

**Which issue this PR fixes**

fixes #50552

**Special notes for your reviewer**:

This is a follow-up of #50135

**Release note**:

```release-note
NONE
```

Kubernetes-commit: f9c861aa101b16a09dd10def70756dbb0b054868
2017-08-29 13:16:11 +00:00
Kubernetes Publisher e82277a8ca Merge pull request #50094 from sttts/sttts-no-importprefix
Automatic merge from submit-queue (batch tested with PRs 50094, 48966, 49478, 50593, 49140)

apimachinery: remove pre-apigroups import path logic

Replacing #50093.

Kubernetes-commit: 9f902fef246851c11e4d17c9597853a6156688a4
2017-08-29 13:16:11 +00:00
Kubernetes Publisher 521652b00c Merge pull request #49785 from FengyunPan/fix-getPortByIP
Automatic merge from submit-queue (batch tested with PRs 47724, 49984, 49785, 49803, 49618)

Fix conflict about getPortByIp

**What this PR does / why we need it**:
Currently getPortByIp() get port of instance only based on IP.
If there are two instances in diffent network and the CIDR of
their subnet are same, getPortByIp() will be conflict.
My PR gets port based on IP and Name of instance.

**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #
Fix #43909

**Special notes for your reviewer**:

**Release note**:
```release-note
NONE
```

Kubernetes-commit: a7ce691311f5462cf71d79a1f9431605198803af
2017-08-29 13:16:10 +00:00
FengyunPan 31e72764d7 Update gophercloud to support list interfaces of OpenStack instance
Kubernetes-commit: ba463062ca363bc6626dff80172782a43abe033f
2017-08-29 13:15:25 +00:00
Kubernetes Publisher 3c35b1a9b8 sync: reset Godeps/Godeps.json 2017-08-29 13:15:25 +00:00
Kubernetes Publisher 9903cc5d7a Merge pull request #50407 from ixdy/gazelle-and-kazel
Automatic merge from submit-queue (batch tested with PRs 49488, 50407, 46105, 50456, 50258)

Manage BUILD files using gazelle + kazel

**What this PR does / why we need it**: uses the upstream `gazelle` tool to manage go rules in BUILD files.
This is needed to support Bazel builds on Mac OS and Bazel cross compilation in general.

**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #47558

**Special notes for your reviewer**:
It's probably easiest to review this commit-by-commit:
* bump to latest `rules_go` (for recent `cgo_library` and `gazelle` improvements)
* update `kazel` with recent compatibility fixes (https://github.com/kubernetes/repo-infra/pull/28, https://github.com/kubernetes/repo-infra/pull/27), update `hack` scripts to download/build `gazelle`, and then run both `gazelle` and `kazel`. (Additionally make `gazelle` skip things it shouldn't touch.)
* run `hack/update-bazel.sh` to autogenerate everything
* remove the old `cgo_genrule` rules - these are now part of `go_library`
* remove the `automanaged` tags from all go rules - `gazelle` doesn't use them, and it prevents an old version of `kazel/gazel` from messing with the rules
* remove the `licenses()` rules from everywhere but `third_party/` - we don't need them, and `gazelle` won't add them on new `BUILD` files it generates.

**Release note**:

```release-note
NONE
```
for review:
/assign @mikedanese @spxtr
for approval:
/assign @thockin

Kubernetes-commit: 941ad0164d44cfcf96dd6efbb491e2222a3a23d3
2017-08-29 13:15:24 +00:00
Kubernetes Publisher e4976b3176 Merge pull request #50308 from m1093782566/validate-apiserver
Automatic merge from submit-queue

validate kube-apiserver options

**What this PR does / why we need it**:

Create Validate() or add more checks in existing Validate() for the following files:

* vendor/k8s.io/apiextensions-apiserver/pkg/cmd/server/start.go:80

* vendor/k8s.io/kube-aggregator/pkg/cmd/server/start.go:104

* vendor/k8s.io/sample-apiserver/pkg/cmd/server/start.go:82

* cmd/kube-apiserver/app/options/validation.go:49

**Which issue this PR fixes**:

fixes #50301

**Special notes for your reviewer**:

This PR follows #50135

**Release note**:

```release-note
NONE
```

Kubernetes-commit: 984f1af5c55b55f1cbbefbe7afd8f3731f06dcd2
2017-08-29 13:15:23 +00:00
Kubernetes Publisher a28089cff0 Merge pull request #50135 from m1093782566/fed-apiserver-validation
Automatic merge from submit-queue

add some checks for fedration-apiserver options

**What this PR does / why we need it**:

I find there is a TODO, see https://github.com/kubernetes/kubernetes/blob/master/federation/cmd/federation-apiserver/app/options/validation.go#L30

This PR add some checks for fedration-apiserver options

@sttts

**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #

**Special notes for your reviewer**:

**Release note**:

```release-note
NONE
```

Kubernetes-commit: d40bfff29744de2b42d47627fe664a17cac04298
2017-08-29 13:15:23 +00:00
Kubernetes Publisher 7e2b09280d Merge pull request #50328 from shiywang/selflink
Automatic merge from submit-queue (batch tested with PRs 50300, 50328, 50368, 50370, 50372)

Add unit tests for GenerateLink

Fixes https://github.com/kubernetes/kubernetes/issues/48321
cc @lavalamp

```release-note
NONE
```

Kubernetes-commit: 9466dbb4ab374652469db5fee6f7b365a0575e01
2017-08-29 13:15:22 +00:00
Kubernetes Publisher f0085e9ad7 Merge pull request #50254 from liggitt/revert-disk-cache
Automatic merge from submit-queue (batch tested with PRs 50254, 50174, 50179)

Revert "Merge pull request #47353 from apelisse/http-cache"

Some issues were discovered with the caching merged in #47353:
* uses a disk-based cache that is not safe between processes (does not use atomic fs operations)
* writes get/list responses to disk that should not be cached (like `kubectl get secrets`)
* is vulnerable to partially written cache responses being used as responses to future requests
* breaks uses of the client transport that make use of websockets
* defaults to enabling the cache for any client builder using RecommendedConfigOverrideFlags or DefaultClientConfig which affects more components than just kubectl

This reverts commit fc89743dca6b563063b74728c3b28100cf674d9d, reversing changes made to 29ab38e898988c36e2de34f77fa33be556eb21bd.

Kubernetes-commit: 187e6ab0bc35f696d8f5f574fab9aa457f253d34
2017-08-29 13:15:22 +00:00
Jordan Liggitt 4661d61624 Revert "Merge pull request #47353 from apelisse/http-cache"
This reverts commit fc89743dca6b563063b74728c3b28100cf674d9d, reversing
changes made to 29ab38e898988c36e2de34f77fa33be556eb21bd.

Kubernetes-commit: 4ee72eb300423772020dd1cf208159058ba7dab5
2017-08-29 13:14:39 +00:00
Kubernetes Publisher 1cbe8b85c9 sync: reset Godeps/Godeps.json 2017-08-29 13:14:39 +00:00
Kubernetes Publisher 0e4f9d22d1 Merge pull request #50159 from liggitt/includeObject
Automatic merge from submit-queue

Fix includeObject parameter parsing

Fixes #50149

Kubernetes-commit: c75d3028dda35e25603aad580326385b8d141f93
2017-08-29 13:14:38 +00:00
Kubernetes Publisher 7dd46577b6 Merge pull request #49678 from smarterclayton/429_metric
Automatic merge from submit-queue

Timeout and Max-in-flight don't report non-resource URLs correctly.

Unify error reporting for 429 and 504 to be correct for timeout and max in flight and eviction. Add better messages to eviction (removing a todo). Return the correct body content for timeouts (reason and code should be correct).

This potentially increases cardinality of 429, but because non-api urls may be under the max-inflight budget we need to report them somewhere (if something breaks and starts fetching API versions endlessly).

```release-note
The 504 timeout error was returning a JSON error body that indicated it was a 500.  The body contents now correctly report a 500 error.
```

Kubernetes-commit: 8d6bbaa85f96f14ac9c9722ed1677e1052c974ba
2017-08-29 13:14:37 +00:00
Kubernetes Publisher 265b663b44 Merge pull request #47353 from apelisse/http-cache
Automatic merge from submit-queue

go-client: Use httpcache client for all requests, even though only openapi returns ETags for caching

**What this PR does / why we need it**: Use HTTP ETag for caching Swagger spec download

This also adds a new command-line flag "cachedir" to specify where the cache should keep its file. It defaults to `$HOME/.kube/http-cache`.

**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: partly #38637

**Special notes for your reviewer**:
Because this adds a bunch of dependencies, and removes a couple of files, I do recommend reading each commit individually.

**Release note**:
```release-note
```

Kubernetes-commit: fc89743dca6b563063b74728c3b28100cf674d9d
2017-08-29 13:14:36 +00:00
Antoine Pelisse a3596c5884 c-go: Add dependencies for http-cache
Kubernetes-commit: e77d298f83114318fabce9f36546c9f6a7c24938
2017-08-29 13:13:52 +00:00
Kubernetes Publisher 02bf6f13d2 sync: reset Godeps/Godeps.json 2017-08-29 13:13:52 +00:00
Kubernetes Publisher d3f9123b11 Merge pull request #48969 from ixdy/update-kazel
Automatic merge from submit-queue (batch tested with PRs 50103, 49677, 49449, 43586, 48969)

Run kazel on the entire tree

**What this PR does / why we need it**: part of #47558: auto-generate `BUILD` files on the entire tree, since this is what `gazelle` does, and it'll make subsequent reviews easier if less is changing.

**Release note**:

```release-note
NONE
```
/assign
/release-note-none

Kubernetes-commit: d15baf69e10f3eddd59da2f6972a723a08e7dac7
2017-08-29 13:13:51 +00:00
Kubernetes Publisher 2c66dfcbee Merge pull request #49195 from huangjiuyuan/fix-typo
Automatic merge from submit-queue

fix typo in staging/src/k8s.io/apiserver/pkg/server/config.go

**What this PR does / why we need it**: Fix a typo `It's members are sorted roughly in order of importance for composers.` in `staging/src/k8s.io/apiserver/pkg/server/config.go`.

**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #

**Special notes for your reviewer**:

**Release note**:

`NONE`

Kubernetes-commit: 2bd0b3dd2616e5c4a6ef79d08dfb8bc8f5959ced
2017-08-29 13:13:50 +00:00
Kubernetes Publisher 06ea0476f0 Merge pull request #49300 from tklauser/syscall-to-x-sys-unix
Automatic merge from submit-queue

Switch from package syscall to golang.org/x/sys/unix

**What this PR does / why we need it**:

The syscall package is locked down and the comment in https://github.com/golang/go/blob/master/src/syscall/syscall.go#L21-L24 advises to switch code to use the corresponding package from golang.org/x/sys. This PR does so and replaces usage of package syscall with package golang.org/x/sys/unix where applicable. This will also allow to get updates and fixes
without having to use a new go version.

In order to get the latest functionality, golang.org/x/sys/ is re-vendored. This also allows to use Eventfd() from this package instead of calling the eventfd() C function.

**Special notes for your reviewer**:

This follows previous works in other Go projects, see e.g. moby/moby#33399, cilium/cilium#588

**Release note**:

```release-note
NONE
```

Kubernetes-commit: 5d24a2c19923d6da46110b827619f4b21cf689ac
2017-08-29 13:13:50 +00:00
Kubernetes Publisher fa9e59055b Merge pull request #49302 from sttts/sttts-missing-codecs
Automatic merge from submit-queue

Add missing ugorji codecs for auth/v1, settings/v1alphav1 and storage/v1

Kubernetes-commit: f8affc7dcc9e227b5d883d2322105be779d22125
2017-08-29 13:13:07 +00:00
Tobias Klauser 98556d38c2 bump(golang.org/x/sys): 7a4fde3fda8ef580a89dbae8138c26041be14299
Kubernetes-commit: 1fd18181ab38a6d65cda26f53b7e4d95f6009878
2017-08-29 13:13:07 +00:00
Kubernetes Publisher 29ed962d0a sync: reset Godeps/Godeps.json 2017-08-29 13:13:07 +00:00
Kubernetes Publisher a1940c88e1 Merge pull request #49782 from supereagle/update-generated-deepcopy
Automatic merge from submit-queue (batch tested with PRs 50029, 48517, 49739, 49866, 49782)

Update generated deepcopy code

**What this PR does / why we need it**:
In generated deepcopy code, the method names in comments do not match the real method names.

**Which issue this PR fixes**: fixes #49755

**Special notes for your reviewer**:
/assign @sttts @caesarxuchao

**Release note**:
```release-note
NONE
```

Kubernetes-commit: 84e0326eb1f108f0d7aa2e9e48fb0c4a8edb4bd5
2017-08-29 13:13:05 +00:00
Kubernetes Publisher 713755562e Merge pull request #48861 from mbohlool/openapi_aggr
Automatic merge from submit-queue (batch tested with PRs 49992, 48861, 49267, 49356, 49886)

Reintegrate aggregation support for OpenAPI

Reintegrating changes of #46734

Changes summary:

- Extracted all OpenAPI specs to new repo `kube-openapi`
- Make OpenAPI spec aggregator to copy and rename any non-requal model (even with documentation change only).
- Load specs when adding APIServices and retry on failure until successful spec retrieval or a 404.
- Assumes all Specs except aggregator's Spec are static
- A re-register of any APIService will result in updating the spec for that service (Suggestion for TPR: they should be registered to aggregator API Server, Open for discussion if any more changes needed for another PR.)

fixes #48548

Kubernetes-commit: 9067d359511890b893794c2e0a93bff88ed7d697
2017-08-29 13:13:04 +00:00
Kubernetes Publisher 8fcacc09b4 Merge pull request #49858 from smarterclayton/openapi_perf
Automatic merge from submit-queue (batch tested with PRs 49871, 49422, 49092, 49858, 48999)

bump(github.com/googleapis/gnostic):0c5108395e2de

Pick up performance improvements to OpenAPI serialization.

Fixes #49776

Kubernetes-commit: ba118b408b50da2dd7c76e7f3e5dfa595781bf47
2017-08-29 13:13:03 +00:00
Clayton Coleman 0d1444d543 bump(github.com/googleapis/gnostic):0c5108395e2de
Pick up performance improvements to OpenAPI serialization.

Kubernetes-commit: 7a458730d7d3eca8ee66ee6ce299aa978f2f09a4
2017-08-29 13:12:15 +00:00
Kubernetes Publisher d48bd1314b sync: reset Godeps/Godeps.json 2017-08-29 13:12:14 +00:00
Kubernetes Publisher 149fc22286 sync: resync vendor folder 2017-08-01 23:57:28 +00:00
Kubernetes Publisher 5d751e6c43 sync: resync vendor folder 2017-07-29 13:56:00 +00:00
Kubernetes Publisher 4269e55801 sync: resync vendor folder 2017-07-28 13:56:57 +00:00
Timothy St. Clair bd580877ac Updates godep for etcd-client to 3.1.10.
Kubernetes-commit: a8b2146ef3d024137244a4d7197e344001d7fb58
2017-07-28 13:56:11 +00:00
Di Xu bb78a51058 update json-patch to fix nil value issue when creating mergepatch
Kubernetes-commit: 8447cee0e0de612703a2fe3c5de0a2345e9bd0c5
2017-07-28 13:56:11 +00:00
Taylor Thomas 69baf544e3 Updating staging Godeps
Kubernetes-commit: 278789e639d50e40b4e3b8a3b98c9fcaec6a89c5
2017-07-28 13:56:11 +00:00
Kubernetes Publisher b6f695c703 sync: reset Godeps.json 2017-07-28 13:56:10 +00:00
Kubernetes Publisher d7bba18199 sync: resync vendor folder 2017-07-19 03:49:47 +00:00
Mikhail Mazurskiy 84487fd2f4 github.com/stretchr/testify - main desired update. Old version has bugs.
github.com/davecgh/go-spew/spew is set to the newest version, a bit
newer than required by testify. Updated from version 6 Nov 2015 to
27 Jun 2017.

github.com/stretchr/objx is not updated - testify uses version
from 27 May 2014 which is older than 28 Sep 2015 used now (latest
actually). In practice there is only a tiny difference - one method was
removed in new version.

Kubernetes-commit: de29d11bfe98fdd0dccd644b55bbe9759e89038d
2017-07-19 03:49:08 +00:00
Kubernetes Publisher e952e322b7 sync: reset Godeps.json 2017-07-19 03:49:08 +00:00
Kubernetes Publisher 7eb7a42b3f sync: resync vendor folder 2017-07-16 04:09:24 +00:00
Kubernetes Publisher 087d1a2efe sync: resync vendor folder 2017-07-06 23:56:55 +00:00
Kubernetes Publisher e30df5e70e sync: resync vendor folder 2017-07-06 00:00:01 +00:00
Kubernetes Publisher 9280d6bd4f sync: resync vendor folder 2017-07-04 08:40:17 +00:00
Kubernetes Publisher 3c5a3c8a9a sync: resync vendor folder 2017-07-01 08:40:15 +00:00
Antoine Pelisse d57ea42cc0 Add NYTimes/gziphandler dependency
Kubernetes-commit: f617df7d6a63692ae8e0b2863f3b44f6ea02d355
2017-07-01 08:39:43 +00:00
Antoine Pelisse cd54e5008c openapi: Fetch protobuf rather than Json
This is much faster.

Kubernetes-commit: 224dba9a136e3e4014d88b3c2546418066bac026
2017-07-01 08:39:43 +00:00
Kubernetes Publisher e110091e0a sync: reset Godeps.json 2017-07-01 08:39:42 +00:00
Kubernetes Publisher fb6bc6c4e7 sync: resync vendor folder 2017-06-30 08:45:31 +00:00
Kubernetes Publisher 83e28913be sync: resync vendor folder 2017-06-30 00:11:26 +00:00
Kubernetes Publisher d9c265d166 sync: resync vendor folder 2017-06-29 00:11:26 +00:00
Kubernetes Publisher e739ac20f4 sync: resync vendor folder 2017-06-28 00:15:15 +00:00
Chao Xu 220472a6dd run update-staging-godeps.sh; the script asks user to manually commit changes for each repo
Kubernetes-commit: c2d576886bbadbf956acab33262906cd141c6650
2017-06-28 00:14:31 +00:00
Huamin Chen 12766fd797 rebase gophercloud to support HTTP status 300 in pagination, so listing Cinder v1/v2 API versions won't break
Signed-off-by: Huamin Chen <hchen@redhat.com>

Kubernetes-commit: ca65a6d15102652abdee7af608012a8712e128a6
2017-06-28 00:14:31 +00:00
Kubernetes Publisher d07d37bd0d sync: reset Godeps.json 2017-06-28 00:14:31 +00:00
Kubernetes Publisher ab57ed5a72 sync: resync vendor folder 2017-06-22 18:19:56 +00:00
Kubernetes Publisher 3df160d696 sync: resync vendor folder 2017-06-22 04:01:39 +00:00
Kubernetes Publisher 9ae8a89e83 sync: resync vendor folder 2017-06-20 17:39:03 +00:00
Kubernetes Publisher 76d76a83b3 sync: resync vendor folder 2017-06-20 00:07:41 +00:00
Kubernetes Publisher c401da6a61 sync: resync vendor folder 2017-06-17 22:12:29 +00:00
Kubernetes Publisher b1c85a6c28 sync: resync vendor folder 2017-06-16 22:12:27 +00:00
Kubernetes Publisher 136648159b sync: resync vendor folder 2017-06-14 20:45:04 +00:00
Kubernetes Publisher dd002fed29 sync: resync vendor folder 2017-06-13 20:48:33 +00:00
Clayton Coleman d7dab9510e bump(golang.org/x/crypto/nacl):d172538b2cfce0c13cee31e647d0367aa8cd2486
Kubernetes-commit: 868cdeca8aee343d3b58107cfb12da5b99b86394
2017-06-13 20:47:32 +00:00
stuart.warren 95846d87d8 commit staging godeps
Kubernetes-commit: af28a43a65ffb617bc1d59a32c3da51145e8c56d
2017-06-13 20:47:32 +00:00
David Ashpole 5b1bafe4d2 update prometheus dependency for staging
Kubernetes-commit: 56f53b92074b5da5de8e2307d791c466ec59bf58
2017-06-13 20:47:31 +00:00
Tim Hockin 7a88cacaa2 Update godeps for juju ratelimit
This picked up an unrelated but missing change.

Kubernetes-commit: 3178433b9fb9a75ffe8b53c4c61fa8b71a409c65
2017-06-13 20:47:28 +00:00
xilabao b8d686777b update gopass to fix format error
Kubernetes-commit: 892980dd748bd99b0493b117ff4bf27eefb0ba63
2017-06-13 20:47:27 +00:00
Di Xu 7f5e263762 update gophercloud that fixed code format
mainly to include #265(https://github.com/gophercloud/gophercloud/pull/265)

Kubernetes-commit: 47442f1c57c0c12d3679e265a3a58c3ca3079a69
2017-06-13 20:47:26 +00:00
Kubernetes Publisher 1caaca9fbd sync: reset Godeps.json 2017-06-13 20:47:26 +00:00
Kubernetes Publisher c809cf8581 sync: resync vendor folder 2017-05-21 17:28:40 +00:00
Clayton Coleman 6eea207197 generated: bazel
Kubernetes-commit: ad720cc651916aedd1d3aca665eff901c3445a88
2017-05-21 17:28:01 +00:00
mbohlool 2db4fe4c8d Add gnostic to Godep
Kubernetes-commit: 67025046a53abe504e99f765c974b1ab7c9262d4
2017-05-21 17:28:00 +00:00
Kubernetes Publisher a5f6d3d188 sync: reset Godeps.json 2017-05-21 17:28:00 +00:00
Kubernetes Publisher f71dd4d00d sync: resync vendor folder 2017-05-20 17:28:52 +00:00
Kubernetes Publisher 14ea88e385 sync: resync vendor folder 2017-05-19 17:29:02 +00:00
Kubernetes Publisher 861c09e05a sync: resync vendor folder 2017-05-18 17:28:36 +00:00
Kubernetes Publisher 156ed5ba2d sync: resync vendor folder 2017-05-17 17:28:28 +00:00
deads2k d17d5c9d3e add mutation cache filter
Kubernetes-commit: f88c7725b4f9446c652d160bdcfab7c6201bddea
2017-05-17 17:27:53 +00:00
Kubernetes Publisher 17be31b876 sync: reset Godeps.json 2017-05-17 17:27:52 +00:00
Kubernetes Publisher 09064d274d sync: resync vendor folder 2017-05-16 17:28:27 +00:00
Kubernetes Publisher 53a5f2e3f3 sync: resync vendor folder 2017-05-15 17:28:21 +00:00
Kubernetes Publisher 2e6c9aa69f sync: resync vendor folder 2017-05-13 17:28:18 +00:00
Kubernetes Publisher 8f71532ed8 sync: resync vendor folder 2017-05-12 17:30:46 +00:00
mbohlool a44fceadf3 Update go-restful dependency
Kubernetes-commit: ea042c6ca0fc7eb8017012ca56d6879b8cf10637
2017-05-12 17:30:08 +00:00
Kubernetes Publisher 366b072768 sync: reset Godeps.json 2017-05-12 17:30:08 +00:00
Kubernetes Publisher f0eaebe542 sync: resync vendor folder 2017-05-05 20:37:36 +00:00
Kubernetes Publisher 713a3ba55f sync: resync vendor folder 2017-05-04 20:37:25 +00:00
Kubernetes Publisher 76ad921357 sync: resync vendor folder 2017-05-03 20:37:05 +00:00
Kubernetes Publisher 6eb4e56e79 sync: resync vendor folder 2017-05-02 20:36:47 +00:00
Kubernetes Publisher a7cda69c3e sync: resync vendor folder 2017-05-01 20:36:59 +00:00
Kubernetes Publisher 537c74df21 sync: resync vendor folder 2017-04-29 20:36:36 +00:00
deads2k 906d3b305f generated
Kubernetes-commit: afc5ae1539b0b27a8b569c4bd737db21bf1229ee
2017-04-29 20:35:54 +00:00
Kubernetes Publisher 5c05b950f8 sync: reset Godeps.json 2017-04-29 20:35:54 +00:00
Kubernetes Publisher 77474aeaba sync: resync vendor folder 2017-04-28 20:37:23 +00:00
Kubernetes Publisher bc11e35195 sync: resync vendor folder 2017-04-27 20:37:49 +00:00
Phillip Wittrock 40db95a6da kubectl OpenAPI godeps updates
Kubernetes-commit: 70704196be463508d0a43dfd04a002364f28346a
2017-04-27 20:37:00 +00:00
Kubernetes Publisher dbb00f9221 sync: reset Godeps.json 2017-04-27 20:37:00 +00:00
Kubernetes Publisher 2bcb7632a1 sync: resync vendor folder 2017-04-26 20:36:59 +00:00
Kubernetes Publisher 486f24b81b sync: resync vendor folder 2017-04-25 20:37:09 +00:00
Kubernetes Publisher 93ba094d6d sync: resync vendor folder 2017-04-24 20:36:50 +00:00
Kubernetes Publisher 565c48cee7 sync: resync vendor folder 2017-04-22 20:36:52 +00:00
Kubernetes Publisher fdec4c499e sync: resync vendor folder 2017-04-21 20:36:18 +00:00
Kubernetes Publisher ee4918ace5 sync: resync vendor folder 2017-04-20 20:36:09 +00:00
Kubernetes Publisher 5fc94698f2 sync: resync vendor folder 2017-04-19 20:36:16 +00:00
Jesse Haka 47a3d6a943 update staging godeps
Kubernetes-commit: 30667834031d0cbdc9cd6afa3f0c9a5e3d003939
2017-04-19 20:35:36 +00:00
Kubernetes Publisher 44f0bc9936 sync: reset Godeps.json 2017-04-19 20:35:36 +00:00
Kubernetes Publisher 4666f77eb3 sync: resync vendor folder 2017-04-18 20:36:22 +00:00
Kubernetes Publisher 48bf36441a sync: resync vendor folder 2017-04-17 20:36:29 +00:00
Kubernetes Publisher 2601b5e306 sync: resync vendor folder 2017-04-16 20:36:03 +00:00
Kubernetes Publisher 93eadddb72 sync: resync vendor folder 2017-04-15 20:36:02 +00:00
Kubernetes Publisher 261c062da2 sync: resync vendor folder 2017-04-14 20:36:10 +00:00
Kubernetes Publisher 3052870a81 sync: resync vendor folder 2017-04-13 20:36:00 +00:00
Kubernetes Publisher 2308857ad3 sync: resync vendor folder 2017-04-12 20:36:01 +00:00
Timothy St. Clair 3c7e90361c Update generated due to proto-shift
Kubernetes-commit: 818dd4443dc4760c90edd3aa608265d2573c7cc9
2017-04-12 20:35:21 +00:00
Kubernetes Publisher e25b721d62 sync: reset Godeps.json 2017-04-12 20:35:21 +00:00
Kubernetes Publisher 77df1eb350 sync: resync vendor folder 2017-04-11 20:35:57 +00:00
Kubernetes Publisher a35798188a sync: resync vendor folder 2017-04-10 20:35:46 +00:00
Kubernetes Publisher f73f492784 sync: resync vendor folder 2017-04-08 20:35:55 +00:00
Kubernetes Publisher b8230f7905 sync: resync vendor folder 2017-04-06 20:35:50 +00:00
Kubernetes Publisher dcf548fbe2 sync: resync vendor folder 2017-04-05 20:35:48 +00:00
Davanum Srinivas aeeb6afb74 Update boltdb dependency to fix golang 1.7 intermittent failures
We have a old boltdb/bolt, etcd has moved to newer boltdb, so we should
do the same. Specifically this change needs to be in our tree:
92410e0673

as this fixes intermittent issues we see in our CI runs. So in this
PR, we vendor the v1.3.0 version of boltdb/bolt.

Fixes #43973

Kubernetes-commit: 29e4031f6113e039e52b72c1db4b005db060abb3
2017-04-05 20:35:15 +00:00
Kubernetes Publisher 324262a0a7 sync: reset Godeps.json 2017-04-05 20:35:15 +00:00
Kubernetes Publisher 111889c61c sync: resync vendor folder 2017-04-04 20:35:46 +00:00
Kubernetes Publisher d93c9fafe6 sync: resync vendor folder 2017-04-03 20:35:45 +00:00
Kubernetes Publisher dffb97042c sync: resync vendor folder 2017-04-01 20:36:06 +00:00
Kubernetes Publisher 1b117e5b34 sync: resync vendor folder 2017-03-31 20:37:52 +00:00
Andy Goldstein 6311898a19 bump(github.com/coreos/go-systemd): 48702e0da86bd25e76cfef347e2adeb434a0d0a6
Kubernetes-commit: a6b06bcf5cd8870c2b4219d7ed636d22ce54f092
2017-03-31 20:37:15 +00:00
Kubernetes Publisher 55d0b34148 sync: reset Godeps.json 2017-03-31 20:37:14 +00:00
Kubernetes Publisher 87aba34640 sync: resync vendor folder 2017-03-20 22:02:54 +00:00
Kubernetes Publisher 77152a25c8 sync: reset Godeps.json 2017-03-20 22:02:34 +00:00
Kubernetes Publisher 62e2705eb4 sync: resync vendor folder 2017-03-18 19:56:27 +00:00
Christoph Blecker 5153b2c354 Bump godep version to v79
Kubernetes-commit: d31a88fee70fb1dd58c4da5251ad4c181ae946a0
2017-03-18 19:56:09 +00:00
Mikkel Oscar Lyderik Larsen d720bb7423 vendor: Update github.com/evanphx/json-patch
Updates github.com/evanphx/json-patch dependency to a version that
doesn't crash when handling an invalid json patch.

Includes fix from https://github.com/evanphx/json-patch/pull/35

Fix #40218

Kubernetes-commit: c02484d380f805484cda4dab0480a2af84c1b3de
2017-03-18 19:56:09 +00:00
Curtis Allen f0174d3be4 bump(github.com/coreos/go-oidc): be73733bb8cc830d0205609b95d125215f8e9c70
Includes updates that enable OIDC with OKTA as a IDP

Kubernetes-commit: 7d409b3731596493b3e54743eb11593e9ba64ac3
2017-03-18 19:56:09 +00:00
Maciej Szulik af3692a43f Remove comment from all staging Godeps.json
Kubernetes-commit: 1f04d9353e9a8419f8856d5e9c91c55d66c55783
2017-03-18 19:56:09 +00:00
Chao Xu 5dce229df1 remove k8s.io entries from Godeps.json, they are outdated and makes the robot fail. robot will populate the correct entry 2017-03-17 17:11:41 -07:00
deads2k fc49878028 sync: resync vendor folder 2017-02-27 15:11:40 -05:00
xilabao 4c3818df4f godep update github.com/spf13/pflag 2017-02-27 15:10:34 -05:00
deads2k ba5f134ce9 sync: reset Godeps.json 2017-02-27 15:10:33 -05:00
deads2k 4e65ec9873 sync: resync vendor folder 2017-02-23 11:13:21 -05:00
Wojciech Tyczynski 587f91d3b6 Fix staging Godeps 2017-02-23 09:48:09 -05:00
Janet Kuo cd1e04f7af Generated: update staging GoDeps 2017-02-23 09:48:09 -05:00
Seth Jennings 33d272f95a fix staging godeps 2017-02-23 09:48:09 -05:00
deads2k d1436a8805 update godep.json files 2017-02-23 09:48:09 -05:00