Mike Danese
a48f218264
Merge pull request #13754 from tummychow/labels-deps
...
Move util.StringSet into its own package
2015-09-10 13:10:54 -07:00
Brendan Burns
2b3bb33569
Address comments.
2015-09-10 13:07:13 -07:00
Brendan Burns
56a1cd76cb
Address changes.
2015-09-10 13:05:32 -07:00
Brendan Burns
b485821bb1
Enable custom columns printing in kubectl
2015-09-10 13:05:32 -07:00
Mike Danese
1fec199356
Merge pull request #13824 from kubernetes/revert-13547-hpa-kubeup
...
Revert "Turning on pod autoscaler on GCE."
2015-09-10 12:53:10 -07:00
Quinton Hoole
eaf0e3e2f3
Merge pull request #13813 from quinton-hoole/2015-09-10-banish-e2e-try-again
...
Banish service up and down e2e test in parallel to flaky
2015-09-10 12:27:12 -07:00
tummychow
78ce5da988
Move util.StringSet into its own package
...
A lot of packages use StringSet, but they don't use anything else from
the util package. Moving StringSet into another package will shrink
their dependency trees significantly.
2015-09-10 12:04:15 -07:00
Brendan Burns
fd73a600a0
Add a code of conduct.
2015-09-10 11:53:27 -07:00
Jeff Lowdermilk
08442974bb
Revert "Turning on pod autoscaler on GCE."
2015-09-10 11:46:37 -07:00
Daniel Martí
71ca503d30
Try to fix flaky test in record/event
...
The error messages were inconsistent with what was actually being tested in
regards to timestamps being equal or not.
2015-09-10 11:44:14 -07:00
Daniel Martí
ad243edaa3
Fix race condition in watch
...
The Shutdown() call returned immediately, without waiting for all event
distributions to be completed. Even worse, it would close all the watcher
result channels before all the info was sent to them.
Properly wait for all distributor goroutines - currently only one - to be
finished.
This fixes the flaky test TestBroadcasterDropIfChannelFull. Bonus cleanup on
said test too.
2015-09-10 11:44:14 -07:00
Daniel Martí
c054b20148
Avoid using two periods in templates
...
Since $id_field already starts with a period, .$id_field would result in the
following in Go 1.5:
error: error parsing template {{range.items}}{{..metadata.name}}:{{end}}, template: output:1: unexpected . after term "."
Apparently, Go 1.4 allowed this. Unnecessary anyway.
2015-09-10 11:44:14 -07:00
Daniel Martí
7aca60f636
Fix probe/tcp test on some systems
...
Depending on your system, the error might be "Servname not supported for
ai_socktype" instead of "unknown port". Accept both.
For example:
http://www.ducea.com/2006/09/11/error-servname-not-supported-for-ai_socktype/
2015-09-10 11:44:14 -07:00
Daniel Martí
0b10c6cfae
Fix failing test in probe/http
...
The error that Go 1.5 returns is different compared to 1.4. Support both.
2015-09-10 11:44:13 -07:00
Daniel Martí
5f3aff2c43
Fix struct input test in jsonpath
2015-09-10 11:44:13 -07:00
Alex Robinson
746dcb8075
Make fluentd-es output its warning logs and fluentd-gcp mount
...
/var/lib/docker read-only.
2015-09-10 18:28:27 +00:00
Brendan Burns
3cf30299f5
Add 1.1 to the roadmap.
2015-09-10 11:14:45 -07:00
Bobby Abbott
9a5f43e16d
Kubelet#GetNode now uses GetNodeInfo instead of List
...
Both GetNode and the cache.ListWatch listfunc in the
kubelet package call List unnecessary.
GetNodeInfo is sufficient for GetNode and makes looping
through a list of nodes to check for a matching name
unnecessary.
resolves #13476
2015-09-10 10:50:41 -07:00
Luke Mino-Altherr
f2664fc73b
Fix getting kube-proxy
2015-09-10 10:16:46 -07:00
k8s-merge-robot
1313e3b14e
Merge pull request #13700 from mikedanese/daemon_set
...
Auto commit by PR queue bot
2015-09-10 10:15:45 -07:00
k8s-merge-robot
92f21b3fe3
Merge pull request #13790 from kevin-wangzefeng/fix_typo_in_development_md
...
Auto commit by PR queue bot
2015-09-10 09:48:08 -07:00
k8s-merge-robot
6f2fa9eb41
Merge pull request #13547 from jszczepkowski/hpa-kubeup
...
Auto commit by PR queue bot
2015-09-10 09:17:20 -07:00
Quinton Hoole
662e41cdcc
Banish services up and down e2e test in parallel to flaky.
2015-09-10 09:08:19 -07:00
Quinton Hoole
72cfaf4955
Demote namespace e2e test to flaky in parallel (and fix it's name).
2015-09-10 08:55:11 -07:00
k8s-merge-robot
08fbe2bc10
Merge pull request #13789 from socaa/resource-consumer-memory
...
Auto commit by PR queue bot
2015-09-10 08:49:42 -07:00
Mike Danese
bf881f187e
rename expapi.Daemon to expapi.DaemonSet
2015-09-10 08:34:26 -07:00
Jerzy Szczepkowski
b41862b670
Turning on pod autoscaler on GCE.
...
Implemented optional turning on of pod autoscaler in kube-up script for GCE.
2015-09-10 16:10:01 +02:00
Justin Santa Barbara
9f4ec648b4
AWS: Create one storage pool for aufs, not two
...
We were splitting the aufs storage into docker & kubernetes areas, but
the kubernetes area was filling up very quickly because empty volumes
went on there, and I had originally not sized it big enough for that.
Instead, create one volume for both so they can share space freely. We
can't do this for devicemapper, but that configuration seems to be
deprecated by Docker anyway.
2015-09-10 07:06:34 -07:00
k8s-merge-robot
6a5049f09d
Merge pull request #13788 from socaa/millicore
...
Auto commit by PR queue bot
2015-09-10 06:30:42 -07:00
hurf
f61d434e1f
Remove duplicate value assginment when validating limitrange
...
It's unnecessary to get the quantities again from limit.
2015-09-10 21:26:53 +08:00
Jerzy Szczepkowski
65d43a40e5
Changed nameing in controller for HorizontalPodAutosclaer.
...
Changed nameing in controller for HorizontalPodAutosclaer to make it consistent with coding conventions.
2015-09-10 15:10:07 +02:00
k8s-merge-robot
3afa6954cc
Merge pull request #13728 from mfojtik/intercept-exit
...
Auto commit by PR queue bot
2015-09-10 05:36:40 -07:00
Ewa Socala
2201a3bfa8
Milicore to Millicore in autoscaling_utils.go
2015-09-10 14:36:19 +02:00
Ewa Socala
9e640b356c
Memory consumption added to Resource Consumer
2015-09-10 13:50:49 +02:00
k8s-merge-robot
703130e8e4
Merge pull request #12915 from kevin-wangzefeng/centos_baremetal
...
Auto commit by PR queue bot
2015-09-10 04:17:19 -07:00
Kevin
82aaf118e2
remove the dependency on brctl, update default config and rephrase minion to node
2015-09-10 16:11:16 +00:00
Kevin
de9d722993
update centos deployment scripts, add sudo user support.
2015-09-10 15:47:07 +00:00
Kevin
4e2613575d
update centos deployment scripts call make-ca-cert.sh to generate certs
2015-09-10 15:47:06 +00:00
Kevin
5f985045f4
set default docker storage driver to devicemapper and fix DOCKER_OPTS passing
2015-09-10 15:47:06 +00:00
Kevin
ff9d482c82
Add CentOS BareMetal deployment scripts.
2015-09-10 15:47:06 +00:00
k8s-merge-robot
cfa5e516a8
Merge pull request #13655 from Huawei-PaaS/change_random_to_roundrobin_in_services_md
...
Auto commit by PR queue bot
2015-09-10 03:43:07 -07:00
Ewa Socala
569ebf7a9b
Resource Consumer Handler milicore changed to millicore
2015-09-10 12:17:02 +02:00
k8s-merge-robot
5adae4e4a3
Merge pull request #12530 from gmarek/kubemark_doc
...
Auto commit by PR queue bot
2015-09-10 01:54:07 -07:00
k8s-merge-robot
f0f0d30c46
Merge pull request #13726 from gmarek/kubelet-changes
...
Auto commit by PR queue bot
2015-09-10 01:52:39 -07:00
gmarek
ca30de0bde
Initial kubemark proposal
2015-09-10 09:54:42 +02:00
gmarek
44e6a566f6
alphabetize structs in cmd/kubelet/app/server.go
2015-09-10 09:54:12 +02:00
Wojciech Tyczynski
ed7d6ebd71
Filter List in Storage level to avoid additional copies.
2015-09-10 09:49:50 +02:00
Michal Fojtik
fb14c8cdf3
Allow to replace os.Exit() with panic when CLI command fatal error
2015-09-10 09:42:22 +02:00
k8s-merge-robot
f867ba3ba1
Merge pull request #13682 from ryfow/block-startup-for-cert
...
Auto commit by PR queue bot
2015-09-10 00:24:23 -07:00
gmarek
3f8953e23b
Add additional knobs to SimpleKubelet
2015-09-10 09:24:13 +02:00