Commit Graph

22650 Commits (2744447dbacf8c9462079c22e002a87422f815fd)

Author SHA1 Message Date
Hongchao Deng 2744447dba scheduler metrics: change Summary to Histogram 2016-01-04 14:50:49 -08:00
Hongchao Deng 47a21aa285 scheduler metrics should only observe successful ops 2016-01-04 14:50:37 -08:00
k8s-merge-robot cd097e3f86 Merge pull request #19088 from smarterclayton/separate_service_account
Auto commit by PR queue bot
2016-01-04 08:38:24 -08:00
k8s-merge-robot 7d04257c8b Merge pull request #17078 from justinsb/remove_route_blackhole
Auto commit by PR queue bot
2016-01-04 07:45:38 -08:00
k8s-merge-robot f293dff556 Merge pull request #19234 from wojtek-t/fix_test_poll_2
Auto commit by PR queue bot
2016-01-04 02:35:50 -08:00
Justin Santa Barbara 7444216d4f AWS: Delete routes during create if they are black-holed
If a route already exists but is invalid (e.g. from a crash), we
automatically delete it before trying to create a route that would
otherwise conflict.
2016-01-03 18:19:12 -05:00
k8s-merge-robot b494855ebf Merge pull request #18541 from pravisankar/kubelet-nodeIP-option
Auto commit by PR queue bot
2016-01-03 11:45:16 -08:00
Ravi Sankar Penta a9b0696166 Update auto generated docs for kubelet
Add node-ip flag to know-flags.txt
2016-01-03 10:18:58 -08:00
Ravi Sankar Penta d0dd6c844b Allow node IP to be passed as optional config for kubelet
In case of multiple IPs on the node, this will allow admin to
specify desired IP to be used for the node.
2016-01-03 09:29:07 -08:00
k8s-merge-robot ac7f85046a Merge pull request #19225 from mikefaille/master
Auto commit by PR queue bot
2016-01-03 02:24:39 -08:00
Wojciech Tyczynski 1ad524ac24 Fix wait_test flakes 2016-01-03 09:56:57 +01:00
k8s-merge-robot 05609cbf44 Merge pull request #19220 from thockin/validation-field-caps
Auto commit by PR queue bot
2016-01-02 12:39:09 -08:00
Wojciech Tyczynski ab58e72333 Merge pull request #19226 from wojtek-t/fix_test_poll
Fix TestPoll test
2016-01-02 17:12:20 +01:00
k8s-merge-robot b4189f965e Merge pull request #19136 from gmarek/cleanup
Auto commit by PR queue bot
2016-01-02 08:02:30 -08:00
Wojciech Tyczynski 84e2d6c3d3 Fix TestPoll test 2016-01-02 14:48:30 +01:00
k8s-merge-robot 4f65f68a12 Merge pull request #19182 from thockin/kube-proxy-conntrack-max
Auto commit by PR queue bot
2016-01-02 02:36:18 -08:00
k8s-merge-robot b4ae87cada Merge pull request #19193 from luxas/static_kubectl
Auto commit by PR queue bot
2016-01-02 01:50:56 -08:00
Michael Faille a2c7ea9ac1 FIX : replace publicIP (decapricated) for clusterIP
It fix this bug :
https://stackoverflow.com/questions/34255601/kube-addons-service-failed-on-coreos-libvirt-installation

Some documentation that explain why clusterIP is better :
https://github.com/kubernetes/kubernetes/blob/master/docs/api.md
2016-01-02 00:05:57 -05:00
k8s-merge-robot e7b41f132b Merge pull request #18995 from thockin/vendor_x_sys_unix
Auto commit by PR queue bot
2016-01-01 19:28:38 -08:00
k8s-merge-robot 267687932f Merge pull request #17916 from justinsb/multizone_volumes_aws
Auto commit by PR queue bot
2016-01-01 18:59:30 -08:00
k8s-merge-robot eafb4c9687 Merge pull request #19224 from bprashanth/timeout_client
Auto commit by PR queue bot
2016-01-01 15:51:28 -08:00
Prashanth B df5faeb5af Switch DefaultClient with a timeoutClient in Ingress e2e. 2016-01-01 12:41:27 +00:00
Wojciech Tyczynski 92463a2435 Merge pull request #19222 from wojtek-t/regenerate_files
Updage auto-generated files
2016-01-01 13:11:34 +01:00
Wojciech Tyczynski 712ab62c63 Update verify boilerplate to support 2016 2016-01-01 12:00:21 +01:00
Wojciech Tyczynski 5abdc2e944 Updage auto-generated files 2016-01-01 11:47:29 +01:00
Tim Hockin 708fda2683 field paths are JSON-style 2015-12-31 15:37:12 -08:00
Justin Santa Barbara f9a6ac077e Ubernetes Lite: Volumes can dictate zone scheduling
For AWS EBS, a volume can only be attached to a node in the same AZ.
The scheduler must therefore detect if a volume is being attached to a
pod, and ensure that the pod is scheduled on a node in the same AZ as
the volume.

So that the scheduler need not query the cloud provider every time, and
to support decoupled operation (e.g. bare metal) we tag the volume with
our placement labels.  This is done automatically by means of an
admission controller on AWS when a PersistentVolume is created backed by
an EBS volume.

Support for tagging GCE PVs will follow.

Pods that specify a volume directly (i.e. without using a
PersistentVolumeClaim) will not currently be scheduled correctly (i.e.
they will be scheduled without zone-awareness).
2015-12-31 12:27:01 -05:00
k8s-merge-robot 7743a4ca89 Merge pull request #19215 from Random-Liu/Reformat-TODOs
Auto commit by PR queue bot
2015-12-31 01:43:36 -08:00
Random-Liu b2a72ca384 Change my TODO to be the same with others 2015-12-31 00:41:05 -08:00
Wojciech Tyczynski 40153138b8 Merge pull request #19213 from wojtek-t/fix_18794
Fix cacher_test flakes
2015-12-31 09:35:31 +01:00
Wojciech Tyczynski 60fc2bc09e Fix cacher_test flake 2015-12-31 07:53:41 +01:00
Tim Hockin da0ac31182 Set conntrack params in kube-proxy
Add flags to control max connections (set to 256k vs 64k default) and TCP
established timeout (set to 1 day vs 5 day default).  Flags can be set to 0 to
mean "don't change it".

This is only set at startup, and not wrapped in a rectifier loop.

Tested manually.
2015-12-30 15:46:40 -08:00
Tim Hockin 92ba1a5182 Add github.com/seccomp/libseccomp-golang dep
This dep is needed by libcontainer, but not vendored.
2015-12-30 15:45:23 -08:00
Tim Hockin 99984bca4c Add golang.org/x/sys/unix dependency
This dep is needed by boltdb, but it was not vendored.
2015-12-30 15:45:23 -08:00
Tim Hockin e48f99e2cf Bump godep release - bugs seem to be fixed. 2015-12-30 15:45:23 -08:00
Joe Finney adb0da005e Merge pull request #19153 from spxtr/split-e2e
Split e2e.sh into e2e.sh and e2e-runner.sh on master branch.
2015-12-30 15:27:00 -08:00
Joe Finney 404da54f10 Split e2e.sh into e2e-jobs.sh and e2e-runner.sh on master branch. 2015-12-30 14:39:31 -08:00
k8s-merge-robot 3644492e66 Merge pull request #19046 from thockin/e2e-svcs-not-round-robin
Auto commit by PR queue bot
2015-12-30 13:08:43 -08:00
k8s-merge-robot 712fcf1c63 Merge pull request #15939 from mqliang/waitgroup
Auto commit by PR queue bot
2015-12-30 12:25:01 -08:00
Wojciech Tyczynski 5a3dbedf3e Merge pull request #19203 from wojtek-t/logging_for18928
Extend logging for debugging #18794 purposes
2015-12-30 21:00:26 +01:00
Wojciech Tyczynski 65696989b2 Extend logging for debugging 18928 2015-12-30 20:09:05 +01:00
k8s-merge-robot 558f69e613 Merge pull request #19196 from wojtek-t/fix_wait_test
Auto commit by PR queue bot
2015-12-30 07:54:05 -08:00
k8s-merge-robot 2f11a6a0f9 Merge pull request #19197 from wojtek-t/increase_apiserver_timeout
Auto commit by PR queue bot
2015-12-30 07:36:36 -08:00
k8s-merge-robot 7113cfe57f Merge pull request #19195 from wojtek-t/fix_master_test
Auto commit by PR queue bot
2015-12-30 07:21:02 -08:00
k8s-merge-robot b51b6c917d Merge pull request #19194 from gmarek/spam
Auto commit by PR queue bot
2015-12-30 07:10:38 -08:00
k8s-merge-robot 8cf35f7f87 Merge pull request #19198 from wojtek-t/remove_log
Auto commit by PR queue bot
2015-12-30 07:02:18 -08:00
Wojciech Tyczynski f9f840a1c6 Remove debug log 2015-12-30 14:42:02 +01:00
k8s-merge-robot 9287a108a4 Merge pull request #18156 from wojtek-t/use_new_deep_copies
Auto commit by PR queue bot
2015-12-30 05:11:02 -08:00
Wojciech Tyczynski 920d3b5336 Increase apiserver timeout in tests 2015-12-30 14:09:54 +01:00
Wojciech Tyczynski 6d33d28de8 Fix wait_test flakes 2015-12-30 14:05:46 +01:00