- 09 Dec, 2014 6 commits
-
-
Clayton Coleman authored
-
Daniel Smith authored
Add util to validate namespaced names
-
Brendan Burns authored
Fix e2e.
-
Brendan Burns authored
-
Daniel Smith authored
Improve error reporting
-
Vojtech Vitek (V-Teq) authored
Follow-up of changes introduced in commit 72c92266
-
- 08 Dec, 2014 14 commits
-
-
Brendan Burns authored
Don't assume every AWS VPC has tags
-
Brendan Burns authored
Default ENABLE_CLUSTER_MONITORING to false
-
Daniel Smith authored
Add --pushup to e2e.go
-
Tim Hockin authored
-
Zach Loafman authored
Silly but hopefully memorable name for an option to --push OR --up depending on cluster state.
-
Daniel Smith authored
Kubelet directory-name builder funcs
-
Daniel Smith authored
Run e2e tests in deterministic random order
-
Zach Loafman authored
Currently, we run the e2e tests in whatever order readdir happens to return, which is random on some filesystems, name sorted on others, create order on others, etc. Eventually, we may want to be automatically hermetic between e2e tests (especially as we introduce more resource destructive tests), but until then, it would be useful if we permute the test order randomly between runs to ensure that developers don't accidentally rely on a particular order. This introduces a form of forced hermeticism, since improper state cleanup from one test may not perturb a given test, but there's probably *a* test in the suite that the order will perturb, so the RNG will find that order eventually. Adds logging of the generated seed, and an --orderseed argument that can be used to re-run in the same order. Also sorts the pass/fail list now for easier human reading.
-
bgrant0607 authored
Query hostIP for Nodes
-
bgrant0607 authored
Make multivalued requirement parser more whitespace tolerant
-
Daniel Smith authored
Check if cluster is up before e2e test without -up
-
Joe Beda authored
Wait/reap build container before removing it
-
Joe Beda authored
Fix e2e-suite/certs.sh unbound variables
-
Zach Loafman authored
Fixes e2e failure on GCE
-
- 07 Dec, 2014 1 commit
-
-
Zach Loafman authored
Minor usability nuisance: If you run: go run hack/e2e.go -v -test .. and you don't happen to have an up e2e cluster, it should fail fast, rather than chugging through every test and having them fall over.
-
- 06 Dec, 2014 4 commits
-
-
-
Tim Hockin authored
Gets rid of some magic constants and makes volume plugins (coming later) cleaner.
-
Daniel Smith authored
make selfLink namespace aware
-
Deyuan Deng authored
-
- 05 Dec, 2014 15 commits
-
-
Daniel Smith authored
Fix detect-minions.
-
Brendan Burns authored
-
Daniel Smith authored
Fix the update test.
-
Brendan Burns authored
-
Brendan Burns authored
Make certs.sh executable.
-
derekwaynecarr authored
-
Brendan Burns authored
-
Brendan Burns authored
Add script to build ui assets, rebuild with latest go-bindata
-
bgrant0607 authored
Print SyncCloud errors
-
bgrant0607 authored
Log ErrUnexpectedEOF from watches as warnings
-
Dawn Chen authored
avoid panics when docker CT has no name
-
bgrant0607 authored
Added a New test case for GetMinion
-
James DeFelice authored
-
Eric Tune authored
reenable update test
-
Dan Mace authored
Watches are often established via long-running HTTP GET requests which will inevitably time out during the normal course of operations. When the watches time out, an io.EOF or an io.ErrUnexpectedEOF will bubble up to client components such as StreamWatcher and Reflector. Treat EOF as a clean watch termination. Treat ErrUnexpectedEOF as a less-clean but non-fatal watch termination and log the event at the warning level. This greatly reduces the amount of log noise generated during what is ultimately normal operation, and adds the flexibility for the operator to make a distinction between the EOF conditions if so desired (by adjusting the logging level).
-