Commit Graph

20757 Commits

Author SHA1 Message Date
k8s-merge-robot
c785a6e77f Merge pull request #17033 from aveshagarwal/master-kubelet-streaming
Auto commit by PR queue bot
2015-11-10 18:09:13 -08:00
k8s-merge-robot
41d2d19f33 Merge pull request #16759 from ixdy/jenkins-configs
Auto commit by PR queue bot
2015-11-10 17:37:40 -08:00
k8s-merge-robot
8d923afe23 Merge pull request #15976 from mesosphere/sur-k8sm-475-error-checking
Auto commit by PR queue bot
2015-11-10 17:05:37 -08:00
Yu-Ju Hong
543391f1dc Clean up unit tests using FakeDockerClient
Add a helper method to set the container map and list at the same time, without
having to specify them separately. This reduces the effort required for
adding/modifying tests as well as making the code more concise.
2015-11-10 16:51:35 -08:00
Jeff Lowdermilk
58c0830726 Export MINION_SIZE as MACHINE_TYPE for gke tests 2015-11-10 16:37:58 -08:00
k8s-merge-robot
d7458ddd4c Merge pull request #16999 from ZhuPeng/bugfix_config_setdefault
Auto commit by PR queue bot
2015-11-10 16:33:35 -08:00
k8s-merge-robot
685071bd4f Merge pull request #16908 from feihujiang/printClueForGettingCommandPrompt
Auto commit by PR queue bot
2015-11-10 16:02:32 -08:00
k8s-merge-robot
23cd7d0251 Merge pull request #17067 from mesosphere/jdef_ignore_mesos_docker_km_overlay
Auto commit by PR queue bot
2015-11-10 15:41:26 -08:00
k8s-merge-robot
253dd4e18e Merge pull request #17073 from jlowdermilk/fix-patch-help-text
Auto commit by PR queue bot
2015-11-10 14:53:27 -08:00
Tim St. Clair
67cfed5bf3 Don't wait for sync to update readiness
Push status updates as soon as readiness state changes for containers,
rather than waiting for the sync loop to update the status. In
particular, this should help new containers to come online faster.

Additionally, consolidates prober test helpers into a single file.
2015-11-10 14:00:12 -08:00
Kris
4a4d195419 Exposing http.Client for configurable timeouts 2015-11-10 13:40:51 -08:00
Brendan Burns
bd65c733b3 Add some more retry... 2015-11-10 13:06:12 -08:00
Jeff Lowdermilk
6868382072 Reword misleading help text for kubectl patch 2015-11-10 13:00:04 -08:00
k8s-merge-robot
fb7520153d Merge pull request #16921 from buzzy/master
Auto commit by PR queue bot
2015-11-10 12:01:51 -08:00
k8s-merge-robot
a8bfce11c4 Merge pull request #16966 from idvoretskyi/patch-1
Auto commit by PR queue bot
2015-11-10 12:01:42 -08:00
Sergiusz Urbaniak
9b7e40570e scheduler: fix shadowing in doSchedule 2015-11-10 20:54:58 +01:00
Jeff Lowdermilk
dd9eabd5f2 jenkins config for testing 1.1 features on gke 2015-11-10 11:23:58 -08:00
k8s-merge-robot
18c74de9a8 Merge pull request #16986 from pmorie/gce-sc
Auto commit by PR queue bot
2015-11-10 11:15:27 -08:00
k8s-merge-robot
6fbae33eb1 Merge pull request #16918 from justinsb/aws_fix_kubedown_no_instances
Auto commit by PR queue bot
2015-11-10 11:11:56 -08:00
James DeFelice
8cb3e2191e added .gitignore for ignoring generated binaries in cluster/mesos/docker/km/overlay 2015-11-10 18:52:55 +00:00
k8s-merge-robot
df10e203f6 Merge pull request #16869 from wonderfly/master
Auto commit by PR queue bot
2015-11-10 10:43:24 -08:00
k8s-merge-robot
f25f5a2c85 Merge pull request #17053 from zhengguoyong/rename_validGroupVersions
Auto commit by PR queue bot
2015-11-10 10:11:21 -08:00
Daniel Wang
d95d4666c4 jenkins: Add jobs for Trusty and Trusty Beta
Start running continuous tests with Trusty images on minions. These tests pin at
a k8s release version, and are run against the latest Trusty images.
2015-11-10 09:32:13 -08:00
Avesh Agarwal
f111033641 Fix defaults for MaxPods and MaxOpenFiles.
Fix go formatting and docs.
2015-11-10 12:20:54 -05:00
derekwaynecarr
9ce6ef87ac Unnecessary updates to ResourceQuota when doing UPDATE to non-pod resources 2015-11-10 12:01:08 -05:00
Avesh Agarwal
a71a9a9164 Fix default value for StreamingConnectionIdleTimeout. 2015-11-10 11:29:28 -05:00
k8s-merge-robot
447fe209ab Merge pull request #17007 from zhengguoyong/fun_order_consistent
Auto commit by PR queue bot
2015-11-10 07:11:16 -08:00
k8s-merge-robot
69427c0a8e Merge pull request #17050 from combk8s/patch-1
Auto commit by PR queue bot
2015-11-10 06:39:13 -08:00
Sergiusz Urbaniak
6a16fe314f scheduler: remove err param from Register 2015-11-10 14:39:57 +01:00
Sergiusz Urbaniak
6fced095ce scheduler: simplify if-then-else handling in doSchedule 2015-11-10 14:39:57 +01:00
Sergiusz Urbaniak
c3311744c5 scheduler: correct doc in doSchedule 2015-11-10 14:39:56 +01:00
Sergiusz Urbaniak
71bd54adc6 scheduler: remove shadowed offer var in doSchedule
The variable `offer` is shadowed in the if block causing the `then`
branch to be non-effective.
2015-11-10 14:39:56 +01:00
Sergiusz Urbaniak
d53b716e97 scheduler: add newlines for readibility in doSchedule 2015-11-10 14:39:56 +01:00
Sergiusz Urbaniak
0ad0c1f2b1 scheduler: remove error param from doSchedule func
doSchedule currently accepts err values from previous invocation delegating
error handling in a location different from the caller which can be hard
to debug and is not a good practice.

We still maintain the same invariants after the refactoring. If an err
happened in a previous invocation to Register, the returned task object
was nil causing task.AcceptedOffer() to return false.

By not invoking doSchedule in case of an error we can eliminate the
first `err == nil` check in doScheduler.
2015-11-10 14:34:53 +01:00
k8s-merge-robot
efa590727a Merge pull request #17031 from xelalexv/issue16425
Auto commit by PR queue bot
2015-11-10 05:29:15 -08:00
zhengguoyong
973400a6fb Kill TODO, rename var 2015-11-10 21:24:21 +08:00
Sergiusz Urbaniak
9bbfc35fa9 scheduler: add err check for procurement 2015-11-10 14:12:05 +01:00
Marcin Wielgus
eee551c451 Merge pull request #17051 from gouyang/fix-typo
fix typo
2015-11-10 14:08:05 +01:00
Guohua Ouyang
4829e08cc4 fix typo
Signed-off-by: Guohua Ouyang <gouyang@redhat.com>
2015-11-10 21:01:27 +08:00
combk8s
50ce7ff1f2 Update nodecontroller.go 2015-11-10 20:27:33 +08:00
k8s-merge-robot
7b3f37a892 Merge pull request #17003 from jiangyaoguo/fix-error-sync-pod-message
Auto commit by PR queue bot
2015-11-10 04:01:28 -08:00
k8s-merge-robot
e3791d5f34 Merge pull request #17034 from mikedanese/gen-name
Auto commit by PR queue bot
2015-11-10 03:30:25 -08:00
eulerzgy
501c2825cf Make order of fun consistent 2015-11-10 17:43:54 +08:00
k8s-merge-robot
fc5066aabf Merge pull request #16440 from thockin/docker-run-docs
Auto commit by PR queue bot
2015-11-09 23:24:05 -08:00
vollschwitz
ac9484b869 prevent consumecpu/mem from becoming zombies by calling run instead of start 2015-11-10 08:04:26 +01:00
k8s-merge-robot
49f050169d Merge pull request #15146 from linzichang/fixup-elasticsearch
Auto commit by PR queue bot
2015-11-09 22:35:37 -08:00
Tim Hockin
faa5c5885a Update docs for running under docker
Make them a bit more version safe.
2015-11-09 22:08:06 -08:00
k8s-merge-robot
a0ef44b712 Merge pull request #16676 from jbeda/e2e-fixes
Auto commit by PR queue bot
2015-11-09 20:05:12 -08:00
ZhuPeng
b94b1efdb0 Avoid log wrong information until got PublicAddress 2015-11-10 10:45:51 +08:00
Jeff Grafton
622cc4d594 Create Jenkins projects for scalability tests on 1.1 2015-11-09 18:15:38 -08:00