Dan Winship
43e1f6ae1f
update gofuzz
2016-12-01 09:07:12 -05: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
Timothy St. Clair
cecf4a7d6f
Update godep to 3.0.14 to match release recommendations.
2016-11-04 04:17:52 -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
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
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
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
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
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
Wojciech Tyczynski
9132965253
Update etcd Godeps to 3.0.13
2016-10-27 13:40:05 +02:00
Mike Danese
1cd2968917
godep: vendor go-bindata
2016-10-24 18:00:08 -07:00
Humble Chirammal
e07863e239
Update heketi dependency to release3.
...
commit hash#28b5cc4cc6d2b9bdfa91ed1b93efaab4931aa697
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
2016-10-24 22:36:28 +05:30
Kubernetes Submit Queue
2de1f5c07e
Merge pull request #34407 from brendandburns/kubectl-schema
...
Automatic merge from submit-queue
Add validation that detects repeated keys in the labels and annotations maps
Fixes #2965 (a nearly 2 year old feature request!)
@kubernetes/kubectl
@eparis
2016-10-19 14:01:00 -07:00
Fabiano Franz
8438089e96
Add heredoc and go-wordwrap dependencies
2016-10-17 11:17:04 -02:00
Mathieu Velten
8ea400b1bf
bump(github.com/rackspace/gophercloud): e00690e87603abe613e9f02c816c7c4bef82e063
2016-10-14 14:54:26 +02:00
Kubernetes Submit Queue
95ccabdf46
Merge pull request #31921 from grahamhayes/openstack-loadbalancer-security-groups
...
Automatic merge from submit-queue
Security Group support for OpenStack Load Balancers
<!-- 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
-->
**Add Security Group Support for OpenStack Load Balancers**:
fixes #29745
adds OpenStack support to the work done in #20392
**Release note**:
```
This allows security groups to be created and attached to the neutron
port that the load balancer is using on the subnet.
The security group ID that is assigned to the nodes needs to be
provided, to allow for traffic from the load balancer to the nodePort
to be reflected in the rules.
This adds two config items to the LoadBalancer options -
ManageSecurityGroups (bool)
NodeSecurityGroupID (string)
```
2016-10-14 02:29:59 -07:00
Brendan Burns
a5ec367c30
Add a dependency on github.com/exponent-io/jsonpath
2016-10-13 21:44:22 -07:00
Graham Hayes
2d02feb5ce
Add new vendored code OpenStack Security Groups
...
To deal with Security Groups in kubernetes we need the gophercloud
code for groups and rules.
This adds the required vendored code
2016-10-11 08:45:18 -07:00
Kubernetes Submit Queue
e7f77237e0
Merge pull request #34403 from derekwaynecarr/update-libcontainer
...
Automatic merge from submit-queue
Update godeps for libcontainer+cadvisor
Needed to unblock more progress on pod cgroup.
/cc @vishh @dchen1107 @timstclair
2016-10-11 01:58:53 -07:00
Kubernetes Submit Queue
0b627334df
Merge pull request #34246 from hongchaodeng/etcddep
...
Automatic merge from submit-queue
etcd3: use PrevKV to remove additional get
ref: #https://github.com/kubernetes/kubernetes/issues/33653
We are trying to test using PrevKV feature and see if it improves performance.
In order to test this, we will need etcd v3.1 (alpha) image.
Blockers:
- update gcr.io image (version v3.0.12)
2016-10-11 01:16:59 -07:00
derekwaynecarr
07bd42a192
update libcontainer,gocapability,cadvisor
2016-10-10 14:24:05 -04:00
Hongchao Deng
c060417ecb
godep: update etcd to 3.0.12
2016-10-10 09:46:40 -07:00
Davanum Srinivas
ab68052424
Update sftp package
...
In support of #34328
2016-10-08 20:41:57 -04:00
Tim St. Clair
b19d71792f
Update gomega godeps to include gstruct
2016-09-28 13:44:36 -07:00
Mike Danese
589d70f495
fix godeps
2016-09-28 11:22:52 -07:00
Kubernetes Submit Queue
df064881d2
Merge pull request #31005 from simonswine/feature-flocker-dyn-provisioning
...
Automatic merge from submit-queue
Dynamic provisioning for flocker volume plugin
Refactor flocker volume plugin
* [x] Support provisioning beta (#29006 )
* [x] Support deletion
* [x] Use bind mounts instead of /flocker in containers
* [x] support ownership management or SELinux relabeling.
* [x] adds volume specification via datasetUUID (this is guranted to be unique)
I based my refactor work to replicate pretty much GCE-PD behaviour
**Related issues**: #29006 #26908
@jsafrane @mattbates @wallrj @wallnerryan
2016-09-28 01:46:43 -07:00
Kubernetes Submit Queue
8ce107cbff
Merge pull request #33263 from wu8685/flag_string_array
...
Automatic merge from submit-queue
Update godep for github.com/spf13/pflag and replace StringSlice with String Array in configMap
Update godep for pkg `github.com/spf13/pflag`, because the new flag type `StringArray` within it is needed in issue #27454
2016-09-28 00:20:43 -07:00
Christian Simon
6f2af39021
Updates godep for pkg/volume/flocker
...
Supports additional options for CreateDataset and DeleteDataset for dynamic provisioning. Bugfix for timeouts during CreateDataset
2016-09-27 13:19:22 +00:00
wu8685
6140ab26d0
update godep for github.com/spf13/pflag
2016-09-27 10:56:12 +08:00
Timothy St. Clair
a8dbab6631
Update etcd godep to 3.0.10 to fix known watch issue.
2016-09-26 10:05:55 -05:00
Kubernetes Submit Queue
8152cfb9c3
Merge pull request #32670 from soltysh/cron_update
...
Automatic merge from submit-queue
Remove hacks from ScheduledJobs cron spec parsing
Previusly `github.com/robfig/cron` library did not allow passing cron spec without seconds. First commit updates the library, which has additional method ParseStandard which follows the standard cron spec, iow. minute, hour, day of month, month, day of week.
@janetkuo @erictune as promised in #30227 I've updated the library and now I'm updating it in k8s
2016-09-23 13:27:16 -07:00
Johannes Scheuermann
799c54fb20
add vendor code
2016-09-16 13:26:18 +02:00
Kubernetes Submit Queue
5975535daa
Merge pull request #31030 from jayunit100/config-e2e-file-2
...
Automatic merge from submit-queue
Add Viper parametrization as E2E config option.
do-not-merge
Fixes #18099 via viper rather than inis.
Wont build until we remove BurntSushi/ COPYING based deps from upstream viper.
I'll dig into those issues independently and update later, before pushing the updated godeps into this PR.
2016-09-15 23:13:13 -07:00
jayunit100
30edeaefc7
Viper dependency + viper godeps
...
licences
2016-09-15 18:37:57 -04:00
Timothy St. Clair
945b57d4fe
Update etcd godep to 3.0.9 to address TestWatch issues
2016-09-15 16:36:22 -05:00
Kubernetes Submit Queue
71b2ebbc1d
Merge pull request #32190 from errordeveloper/vendor-go-jose
...
Automatic merge from submit-queue
Vendor github.com/square/go-jose for kubeadm and kube-discovery
**What this PR does / why we need it**:
This is to be used by `kubeadm` (#31221 ) and @dgoodwin's `kube-discovery` (PR pending).
***[xref kubernetes/features#11 ]***
***[cc @kubernetes/sig-cluster-lifecycle]***
**Special notes for your reviewer**:
This is first time I've used `godep`, so please verify if all is quite right about the diff. I'm not 100% sure if there should be secondary dependencies or not.
```release-note
NONE
```
2016-09-14 11:49:36 -07:00
Maciej Szulik
03555ab1ae
bump(github.com/robfig/cron/):783cfcb01fb00c48f740c9de79122bd410294149
2016-09-14 20:30:17 +02:00
Ilya Dmitrichenko
c1e935af63
Vendor github.com/square/go-jose@789a4c4bd4c118f7564954f441b29c153ccd6a96
...
This is to be used by kubeadm (#31221 ) and kube-discovery.
It adds dummy code to make verification scripts pass.
[xref kubernetes/features#11 ]
2016-09-14 15:28:22 +01:00
Davanum Srinivas
64efc3a744
Update Google Cloud API client import paths
...
Bump version of golang.org/x/oauth2
Vendor google.golang.org/cloud/
Vendor google.golang.org/api/
Vendor cloud.google.com/go/compute/
Replace google.golang.org/cloud with cloud.google.com/go/
Fixes #30069
2016-09-13 22:21:06 -04:00
Tim St. Clair
5f8e4ee1e0
Update cAdvisor Godeps with new google cloud import path
2016-09-13 14:57:29 -07:00
Kubernetes Submit Queue
32a32962ee
Merge pull request #31564 from ericchiang/update-go-oidc
...
Automatic merge from submit-queue
vendor: update github.com/coreos/go-oidc client package
This change updates the github.com/coreos/go-oidc package to it's latest commit
(since we don't version that package).
Notable changes:
- Throw out JWTs with invalid claims early (coreos/go-oidc#97, brougt up in #30457 )
- Remove the capnslog dependency (coreos/go-oidc#95 )
- Support for Azure AD oddities (coreos/go-oidc#87 )
cc @kubernetes/sig-auth
2016-09-12 14:43:43 -07:00
Kubernetes Submit Queue
bc835c608a
Merge pull request #31586 from brendandburns/kubectl
...
Automatic merge from submit-queue
When prompting for passwords, don't echo to the terminal
@deads2k
@kubernetes/kubectl
2016-09-10 13:58:13 -07:00
Piotr Szczesniak
323f2aa0db
Bumped influxdb to 0.12.2 in Godeps
2016-08-30 12:23:40 +02:00