Maciej Szulik
43dfcd7a59
Remove extensions/v1beta1 Job - staging client
2016-12-17 00:10:35 +01:00
Kubernetes Submit Queue
9407bc5bbe
Merge pull request #38625 from smarterclayton/bump_gorestful
...
Automatic merge from submit-queue
Update to latest go-restful
Enables us to remap the variable names swagger uses in output so we can avoid duplicates across type names.
Part of #38071
@mbohlool
2016-12-12 22:24:37 -08:00
Kubernetes Submit Queue
8abbedae54
Merge pull request #38315 from mikedanese/pin-gazel
...
Automatic merge from submit-queue
Pin gazel to a version and support cgo
This fixes the bazel build.
@krousey who is buildcop
2016-12-12 19:32:29 -08:00
Mike Danese
c87de85347
autoupdate BUILD files
2016-12-12 13:30:07 -08:00
Clayton Coleman
c5f3784198
bump(github.com/emicklei/go-restful):09691a3b6378b740595c1002f40c34dd5f218a22
2016-12-12 11:09:58 -05:00
Lucas Käldström
0033a02c43
Revert to version 70b2c90b260171e829f1ebd7c17f600c11858dbe of the vendored package github.com/Azure/go-ansiterm
2016-12-11 22:10:39 +02:00
Clayton Coleman
9ff68e6667
generated: staging update
2016-12-10 18:05:56 -05:00
Clayton Coleman
c52d510a24
refactor: generated
2016-12-10 18:05:53 -05:00
Brendan Burns
91f19e3dfc
Add an azure container registry credential provider.
2016-12-08 21:38:11 -08:00
Brendan Burns
8d90cadc0b
Update azure dependency. Add contianer registry.
2016-12-08 21:36:00 -08:00
Kubernetes Submit Queue
133117e146
Merge pull request #35116 from shashidharatd/fed-coredns-provider
...
Automatic merge from submit-queue
Add CoreDNS as Federation DNS provider
This PR contains following
1. DNS provider implementation for CoreDNS with etcd as backend
2. Script for optionally deploying CoreDNS in federation control plane
Still to do:
1. HA for CoreDNS service need to be handled, would be taken up in subsequent PR
2. Need to configure CoreDNS as fallback DNS to in-cluster KubeDNS(Manual Step). Need to consider automation.
Request for review: @quinton-hoole @madhusudancs @nikhiljindal @kshafiee @deepak-vij
cc @kubernetes/sig-cluster-federation
2016-12-08 18:50:05 -08:00
Kubernetes Submit Queue
7f2622e668
Merge pull request #32663 from anguslees/extraroutes
...
Automatic merge from submit-queue
openstack: Implement the `Routes` provider API
``` release-note
Implement the Routes provider API for OpenStack using Neutron extraroute extension. This removes the need for flannel/etc where supported. To use, ensure all your nodes are on the same Neutron (private) network and specify the router ID in new `[Route]` section of provider config:
[Route]
router-id = <router UUID>
```
2016-12-07 21:36:13 -08:00
Kubernetes Submit Queue
af5a91d46d
Merge pull request #38130 from fabianofranz/bump_docker_go_units
...
Automatic merge from submit-queue (batch tested with PRs 38294, 37009, 36778, 38130, 37835)
Bump github.com/docker/go-units dependency
<!-- Thanks for sending a pull request! Here are some tips for you:
1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md
2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md
3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes
-->
**What this PR does / why we need it**: Bump [github.com/docker/go-units](https://github.com/docker/go-units/ ) to include https://github.com/docker/go-units/pull/22 which improves the precision of human durations ("about an hour ago", "2 days ago", etc).
**Which issue this PR fixes**: Issue detected in OpenShift: https://github.com/openshift/origin/issues/11967
**Release note**:
<!-- Steps to write your release note:
1. Use the release-note-* labels to set the release note state (if you have access)
2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`.
-->
```release-note
NONE
```
2016-12-07 10:45:20 -08:00
Jordan Liggitt
1c89a10556
Re-use juju ratelimit
...
Reverts changes in cebfc821a4
2016-12-07 10:32:47 -05:00
Jordan Liggitt
45cf32810d
bump(github.com/juju/ratelimit): 77ed1c8a01217656d2080ad51981f6e99adaa177
2016-12-07 10:32:18 -05:00
Fabiano Franz
ed1d1dad44
bump(github.com/docker/go-units): e30f1e79f3cd72542f2026ceec18d3bd67ab859c
2016-12-07 11:26:44 -02:00
shashidharatd
2807e8050e
Implement CoreDNS as external dns provider for federation
2016-12-06 16:20:55 +05:30
shashidharatd
367102e2b2
Add vendor code github.com/miekg/coredns/middleware/etcd/msg
2016-12-06 16:20:55 +05:30
Angus Lees
7a5aee23c1
Add gophercloud/.../layer3/routers
...
Import github.com/rackspace/gophercloud/openstack/networking/v2/extensions/layer3/routers/
2016-12-05 12:27:40 +11:00
Clayton Coleman
3454a8d52c
refactor: update bazel, codec, and gofmt
2016-12-03 19:10:53 -05:00
Clayton Coleman
5df8cc39c9
refactor: generated
2016-12-03 19:10:46 -05:00
Kubernetes Submit Queue
723a200c09
Merge pull request #37823 from danwinship/better-fuzzing
...
Automatic merge from submit-queue (batch tested with PRs 38049, 37823, 38000, 36646)
Test 0-length-arrays in fuzzing tests
While hacking on #37289 I noticed that our fuzzing tests test nil slices and slices of length 1, but not slices of length 0, meaning we aren't testing that 0-length slices get treated the same as nil in all the places we expect them to (and in particular, we aren't ensuring that comparisons always use api.Semantic.DeepEqual rather than reflect.DeepEqual). (Though in fact, changing the fuzzer didn't turn up any bugs, so maybe this effectively gets tested somewhere else...)
`fuzz.New().NilChance(.5).NumElements(0, 1)` means we end up generating `nil` 50% of the time, a length 0 array 25% of the time, and a length 1 array 25% of the time... maybe it should be `fuzz.New().NilChance(.33).NumElements(0, 1)` instead?
The gofuzz rebase is to pull in https://github.com/google/gofuzz/pull/20 , and the other fix is just a drive-by.
2016-12-03 14:20:50 -08:00
Kubernetes Submit Queue
ee3289cce5
Merge pull request #36755 from deads2k/cli-09-extend-impersonate
...
Automatic merge from submit-queue (batch tested with PRs 36263, 36755, 37357, 37222, 37524)
add other impersonation fields to transport
Adds the group and extra fields to the impersation options in a rest and transport config.
@kubernetes/sig-auth
2016-12-02 16:26:45 -08:00
Dan Winship
43e1f6ae1f
update gofuzz
2016-12-01 09:07:12 -05:00
Clayton Coleman
35a6bfbcee
generated: refactor
2016-11-23 22:30:47 -06:00
deads2k
bbcf06167e
run update staging
2016-11-15 08:10:31 -05:00
Marcin
6f235de143
Updated bazel build
2016-11-11 19:43:06 +01:00
Mike Danese
98cbcc55a5
update ./vendor/BUILD
2016-11-09 15:47:30 -08:00
Miao Luo
a7fc0e4698
Photon Controller platform vendor code
2016-11-08 09:36:16 -08:00
Kubernetes Submit Queue
cc7070d5d8
Merge pull request #35583 from justinsb/replace_ratelimit
...
Automatic merge from submit-queue
Create simple version of ratelimit package
Allows for better testing.
2016-11-07 00:01:18 -08:00
Kubernetes Submit Queue
30fa3231ed
Merge pull request #36260 from timothysc/etcd_3_0_14
...
Automatic merge from submit-queue
Update godep to 3.0.14 to match release recommendations.
Updates godep and regen of bazel build output.
/cc @wojtek-t
2016-11-06 22:03:44 -08:00
Timothy St. Clair
cecf4a7d6f
Update godep to 3.0.14 to match release recommendations.
2016-11-04 04:17:52 -05:00
Timothy St. Clair
1cb97b83ca
Update generated componentconfig from adding minimum iptables sync to the proxy
2016-11-04 00:40:09 -05:00
Saad Ali
d41b3b0929
Revert "Add missing vendor files to make godeps happy"
2016-11-02 20:56:06 -07:00
saadali
e9afbd5cdf
Add missing vendor files to make godeps happy
2016-11-02 18:55:10 -07:00
Mike Danese
34ca3dd50a
bazel: fix and start verify ./vendor/BUILD
2016-11-01 21:54:52 -07:00
Kubernetes Submit Queue
3d33b45e43
Merge pull request #30091 from rootfs/azure-storage
...
Automatic merge from submit-queue
support Azure disk dynamic provisioning
azure disk dynamic provisioning
A screen shot
``` console
$ kubectl create -f examples/experimental/persistent-volume-provisioning/azure-dd.yaml
storageclass "slow" created
$ kubectl create -f examples/experimental/persistent-volume-provisioning/claim1.json
persistentvolumeclaim "claim1" created
$ kubectl describe pvc
Name: claim1
Namespace: default
Status: Bound
Volume: pvc-de7150d1-6a37-11e6-aec9-000d3a12e034
Labels: <none>
Capacity: 3Gi
Access Modes: RWO
$ kubectl create -f pod.yaml
replicationcontroller "nfs-server" created
$ kubectl describe pod
Name: nfs-server-b9w6x
Namespace: default
Node: rootfs-dev/172.24.0.4
Start Time: Wed, 24 Aug 2016 19:46:21 +0000
Labels: role=nfs-server
Status: Running
IP: 172.17.0.2
Controllers: ReplicationController/nfs-server
Containers:
nfs-server:
Container ID: docker://be6f8c0e26dc896d4c53ef0d21c9414982f0b39a10facd6b93a255f9e1c3806c
Image: nginx
Image ID: docker://bfdd4ced794ed276a28cf56b233ea58dec544e9ca329d796cf30b8bcf6d39b3f
Port:
State: Running
Started: Wed, 24 Aug 2016 19:49:19 +0000
Ready: True
Restart Count: 0
Volume Mounts:
/exports from mypvc (rw)
/var/run/secrets/kubernetes.io/serviceaccount from default-token-9o0fj (ro)
Environment Variables: <none>
Conditions:
Type Status
Initialized True
Ready True
PodScheduled True
Volumes:
mypvc:
Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace)
ClaimName: claim1
ReadOnly: false
default-token-9o0fj:
Type: Secret (a volume populated by a Secret)
SecretName: default-token-9o0fj
QoS Class: BestEffort
Tolerations: <none>
Events:
FirstSeen LastSeen Count From SubobjectPath Type Reason Message
--------- -------- ----- ---- ------------- -------- ------ -------
11m 11m 1 {default-scheduler } Normal Scheduled Successfully assigned nfs-server-b9w6x to rootfs-dev
9m 9m 1 {kubelet rootfs-dev} Warning FailedMount Unable to mount volumes for pod "nfs-server-b9w6x_default(6eb7fd98-6a33-11e6-aec9-000d3a12e034)": timeout expired waiting for volumes to attach/mount for pod "nfs-server-b9w6x"/"default". list of unattached/unmounted volumes=[mypvc]
9m 9m 1 {kubelet rootfs-dev} Warning FailedSync Error syncing pod, skipping: timeout expired waiting for volumes to attach/mount for pod "nfs-server-b9w6x"/"default". list of unattached/unmounted volumes=[mypvc]
8m 8m 1 {kubelet rootfs-dev} spec.containers{nfs-server} Normal Pulling pulling image "nginx"
8m 8m 1 {kubelet rootfs-dev} spec.containers{nfs-server} Normal Pulled Successfully pulled image "nginx"
8m 8m 1 {kubelet rootfs-dev} spec.containers{nfs-server} Normal Created Created container with docker id be6f8c0e26dc
8m 8m 1 {kubelet rootfs-dev} spec.containers{nfs-server} Normal Started Started container with docker id be6f8c0e26dc
```
@colemickens @brendandburns
2016-11-01 17:27:14 -07:00
Kubernetes Submit Queue
a52ad987d2
Merge pull request #35520 from humblec/gluster-gid-prov-3
...
Automatic merge from submit-queue
Update heketi dependency to release3.
commit hash#28b5cc4cc6d2b9bdfa91ed1b93efaab4931aa697
Signed-off-by: Humble Chirammal hchiramm@redhat.com
2016-10-31 07:33:36 -07:00
Justin Santa Barbara
cebfc821a4
Create simple version of ratelimit package
...
Allows for more testing.
2016-10-30 20:55:03 -04:00
Kubernetes Submit Queue
224393f962
Merge pull request #35700 from mmilata/bump-pflag
...
Automatic merge from submit-queue
Update github.com/spf13/pflag to latest version
<!-- Thanks for sending a pull request! Here are some tips for you:
1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md
2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md
3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes
-->
**What this PR does / why we need it**:
This PR updates `github.com/spf13/pflag` to the latest version.
* OpenShift needs pflag bump in order to use [`StringArray`](https://github.com/spf13/pflag/issues/89 ), and
* Latest revision contains couple of bugfixes that I'd like to have there, and
* Kubernetes should have the same version, which is the reason for this PR
**Which issue this PR fixes**:
None, related to openshift/origin#11539 .
**Special notes for your reviewer**:
`hack/verify-godeps.sh` fails with following output even though I haven't touched that package: https://gist.github.com/mmilata/3cb84b754f9b9e7ff371a7b6c5131b09
Am I using the wrong golang/godep version perhaps? Any hint what am I doing wrong?
**Release note**:
<!-- Steps to write your release note:
1. Use the release-note-* labels to set the release note state (if you have access)
2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`.
-->
```release-note
NONE
```
2016-10-30 15:50:36 -07:00
Justin Santa Barbara
e7efadaab1
Remove juju ratelimit from godeps
2016-10-30 14:35:32 -04:00
Chao Xu
4287973d99
run copy.sh
...
fix test/e2e/disruption after running copy.sh
2016-10-29 14:44:07 -07:00
Kubernetes Submit Queue
bb992150fa
Merge pull request #35694 from wojtek-t/update_etcd_3_0_13
...
Automatic merge from submit-queue
Update Godeps etcd to 3.0.13
Ref #20504
2016-10-29 05:00:55 -07:00
Anirudh Ramanathan
7870543471
Merge pull request #35702 from mikedanese/unrevert
...
unrevert genrule for bindata
2016-10-27 11:53:04 -07:00
Huamin Chen
472156748f
update vendor pkg to support azure disk provisioning
...
Signed-off-by: Huamin Chen <hchen@redhat.com>
2016-10-27 17:42:44 +00:00
Mike Danese
bce3f0e247
unrevert genrule for bindata
2016-10-27 10:35:28 -07:00
Anirudh
f2c158680a
Removing datagen.go as it has been removed from godeps
2016-10-27 09:17:30 -07:00
David Ashpole
4223e8ff35
rebase godeps
2016-10-27 08:24:39 -07:00
David Ashpole
aa20c4b48f
updated cadvisor godeps
2016-10-27 08:04:59 -07:00
Martin Milata
1d894c7a6a
bump(github.com/spf13/pflag): 5ccb023bc27df288a957c5e994cd44fd19619465
2016-10-27 16:25:28 +02:00