- 11 Sep, 2015 13 commits
-
-
k8s-merge-robot authored
Auto commit by PR queue bot
-
Abhishek Shah authored
-
k8s-merge-robot authored
Auto commit by PR queue bot
-
Mike Danese authored
fix typo error of ovs-networking.png
-
k8s-merge-robot authored
Auto commit by PR queue bot
-
Mike Danese authored
fix the dead link of docker.md
-
k8s-merge-robot authored
Auto commit by PR queue bot
-
huangyuqi authored
-
Mike Danese authored
Move pkg/client/unversioned/cache to pkg/client/cache; it is version-…
-
k8s-merge-robot authored
Auto commit by PR queue bot
-
Daniel Smith authored
-
Daniel Smith authored
-
Daniel Smith authored
pkg/client/unversioned/cache -> pkg/client/cache pkg/client/unversioned/record -> pkg/client/record
-
- 10 Sep, 2015 27 commits
-
-
k8s-merge-robot authored
Auto commit by PR queue bot
-
k8s-merge-robot authored
Auto commit by PR queue bot
-
k8s-merge-robot authored
Auto commit by PR queue bot
-
yuqi huang authored
fix the dead link &typo error of docker.md
-
Mike Danese authored
Race condition and test fixes
-
Yifan Gu authored
-
Yifan Gu authored
-
Yifan Gu authored
Also enable grace stop for service files.
-
k8s-merge-robot authored
Auto commit by PR queue bot
-
Daniel Martí authored
Our WaitGroup.Add() call might happen after some WaitGroup.Done() calls done by the controller, so make sure that doesn't happen by doing the Add() calls before letting the controller run. --- FAIL: TestUpdate (2.00s) panic: sync: WaitGroup is reused before previous Wait has returned [recovered] panic: sync: WaitGroup is reused before previous Wait has returned -
k8s-merge-robot authored
Auto commit by PR queue bot
-
k8s-merge-robot authored
Auto commit by PR queue bot
-
JanetKuo authored
-
Mike Danese authored
Move util.StringSet into its own package
-
Brendan Burns authored
-
Brendan Burns authored
-
Brendan Burns authored
-
Mike Danese authored
Revert "Turning on pod autoscaler on GCE."
-
Quinton Hoole authored
Banish service up and down e2e test in parallel to flaky
-
tummychow authored
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.
-
Brendan Burns authored
-
Jeff Lowdermilk authored
-
Daniel Martí authored
The error messages were inconsistent with what was actually being tested in regards to timestamps being equal or not.
-
Daniel Martí authored
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.
-
Daniel Martí authored
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. -
Daniel Martí authored
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/
-
Daniel Martí authored
The error that Go 1.5 returns is different compared to 1.4. Support both.
-