Brendan Burns
ab0844840a
Merge pull request #8246 from rrati/red-flag-pod-termination
...
Correct logic for failing after % of containers fail. #7790
2015-05-16 02:46:07 +01:00
Daniel Smith
cf337051e0
Merge pull request #7819 from nikhiljindal/etcdTranslation
...
Adding a script to update etcd objects as per the latest API Version
2015-05-15 18:28:36 -07:00
Robert Bailey
017a35cf37
Merge pull request #8364 from mbforbes/testRebootGke
...
Enable reboot test for GKE
2015-05-15 17:39:57 -07:00
Brian Grant
c4b20672f2
Merge pull request #8302 from bcbroussard/web-ui-links
...
Fix misdirected links in Web UI from pod conversion
2015-05-15 17:37:15 -07:00
Max Forbes
b32c54625b
Enable reboot test for GKE
2015-05-15 17:27:39 -07:00
Robert Bailey
9df413e0e1
Merge pull request #7580 from mbforbes/testReboot
...
Test reboot
2015-05-15 17:26:16 -07:00
Max Forbes
5d1d37f9ca
Add a node reboot test.
2015-05-15 17:25:28 -07:00
Maxwell Forbes
822d4b0fcc
Merge pull request #8359 from ixdy/native-ginkgo-runner
...
Revert "Once again, use native Ginkgo test runner instead of cmd/e2e."
2015-05-15 17:10:42 -07:00
Prashanth B
abd0d7b2cb
Merge pull request #8261 from lavalamp/scheduler
...
Make scheduler optimistic about its bindings
2015-05-15 17:06:42 -07:00
Prashanth B
6144b49139
Merge pull request #8336 from brendandburns/kubectl
...
Add a test for status message generation.
2015-05-15 17:06:21 -07:00
Jeff Grafton
67da1ac0c8
Revert "Once again, use native Ginkgo test runner instead of cmd/e2e."
...
This change broke compilation on go 1.3 and running e2e tests on OS X.
This reverts commit 86b023fdd6
.
2015-05-15 16:41:55 -07:00
nikhiljindal
fa9f864782
Adding a script to update etcd objects
2015-05-15 16:20:35 -07:00
Quinton Hoole
c4fa78509d
Merge pull request #7653 from ixdy/native-ginkgo-runner
...
Once again, use native Ginkgo test runner instead of cmd/e2e
2015-05-15 15:29:19 -07:00
David Oppenheimer
b8c469e4f0
Merge pull request #8134 from nikhiljindal/test-go
...
Fixing the number of times our unit tests are run
2015-05-15 15:28:34 -07:00
Daniel Smith
ce4b54ec70
Merge pull request #8209 from krousey/v1beta1_cluster
...
Removing some v1beta1 uses in cluster/
2015-05-15 14:56:41 -07:00
Yu-Ju Hong
e1a153e841
Merge pull request #8340 from dchen1107/clean
...
Wait for docker to start cadvisor.
2015-05-15 14:36:10 -07:00
Nikhil Jindal
6dc309b3cf
Merge pull request #8200 from caesarxuchao/liveness-example
...
update example/liveness to v1beta3
2015-05-15 14:33:25 -07:00
Nikhil Jindal
5888982e74
Merge pull request #8266 from caesarxuchao/gluster-example
...
Update examples/glusterfs to v1beta3; add desciption of Glusterfs endpoints in README.md
2015-05-15 14:32:31 -07:00
Yu-Ju Hong
b8dd790ca1
Merge pull request #8284 from yifan-gu/rkt_fix
...
kubelet/rkt: Fix rkt status parsing, and resource requirement convert…
2015-05-15 14:30:48 -07:00
Yu-Ju Hong
bc9b6e93e3
Merge pull request #7868 from derekwaynecarr/bound_duration
...
Allow a pod to be actively killed by the kubelet if it runs too long
2015-05-15 14:23:24 -07:00
Kris Rousey
98c457c397
Updating /cluster to use v1beta 3 specs, and change a lot of polling to
...
healthz instead of api endpoints.
2015-05-15 14:17:55 -07:00
Yifan Gu
aa7393b55e
kubelet/rkt: Fix rkt status parsing, and resource requirement convertion.
2015-05-15 13:42:36 -07:00
derekwaynecarr
8216332611
Kubelet kills a pod that exceeds ActiveDeadlineSeconds
2015-05-15 16:33:37 -04:00
Dawn Chen
85ca8506bb
Wait for docker to start cadvisor.
2015-05-15 13:24:24 -07:00
Dawn Chen
ee4bf2ba4c
Merge pull request #8324 from vmarmol/cadvisor
...
Update cAdvisor godep.
2015-05-15 13:07:28 -07:00
Jeff Lowdermilk
46bd6f298a
Merge pull request #8237 from smarterclayton/continue_on_error
...
Make ContinueOnError actually work
2015-05-15 12:57:29 -07:00
Brendan Burns
a197b24fb7
Add a test for status message generation. Fix a bug in reason message handling.
2015-05-15 20:45:16 +01:00
Satnam Singh
afedb2d24a
Merge pull request #8322 from thockin/dns
...
Base the kube2sky container on busybox
2015-05-15 12:05:37 -07:00
Jeff Grafton
86b023fdd6
Once again, use native Ginkgo test runner instead of cmd/e2e.
...
This commit deletes cmd/e2e and updates hack/ginkgo-e2e.sh to use the
'ginkgo' command instead. All logic from cmd/e2e/e2e.go and
test/e2e/driver.go have been combined into the new file
test/e2e/e2e_test.go.
The test tarball now includes a built version of the test/e2e test
binary, which includes all tests under test/e2e. This was accomplished
by updating the build scripts to use 'go test -c' when a target name
ended with '.test', and adding a dependency on test/e2e/e2e.test.
This prebuilt test binary is passed to the Ginkgo runner in
hack/ginkgo-e2e.sh. In a future change, we can add support to run
Ginkgo against the source tree if it is available.
This change is generally intended to have no externally visible changes,
aside from the following caveats:
- The -t/--tests flag has been removed
- Calling cmd/e2e/e2e directly obviously won't work, but that was never
intended to be supported anyway
- If the GINKGO_PARALLEL environment variable is set to y, then ginkgo
will run test specs in parallel. (Currently defaults to n, since some
tests are broken in this mode.)
Additionally, several tests which made poor assumptions about cwd or
used testContext before it had been set have been fixed.
2015-05-15 11:54:53 -07:00
Quinton Hoole
1ee33ac481
Merge pull request #8333 from ixdy/e2e-kubectl
...
e2e: don't try to clean up after rolling-update test
2015-05-15 11:46:04 -07:00
Jeff Lowdermilk
a5bc6bdaf3
Merge pull request #8166 from kargakis/labels-for-object
...
expose: Re-use labels in case none was specified
2015-05-15 11:35:52 -07:00
Prashanth B
0f98a1dd78
Merge pull request #8312 from wojtek-t/remove_gob
...
Remove gob reference as they are no longer needed after #8188
2015-05-15 11:26:20 -07:00
Clayton Coleman
a47716e66d
Make ContinueOnError actually work
...
In resource.Builder ContinueOnError() should actually do so.
Reorganized util.CheckErr() to make it display bulk errors more
effectively and be more reusable. Clarified that CheckErr is not
specific to kubectl in Godoc. Changed the "Error: " prefix to
"error: " to more closely match Unix conventions.
2015-05-15 14:26:14 -04:00
Jeff Grafton
fa77928c30
e2e: don't try to clean up after rolling-update test
2015-05-15 11:23:06 -07:00
Chao Xu
b5439d4486
Update examples/glusterfs to v1beta3;
...
Add desciption of Glusterfs endpoints in README.md;
Add validation for endpoints in examples_test.go
2015-05-15 11:13:32 -07:00
Quinton Hoole
b79d510668
Merge pull request #8331 from GoogleCloudPlatform/revert-8278-no-ro-nettest
...
Revert "Fix networking test"
Fixes #8326
2015-05-15 11:05:47 -07:00
Quinton Hoole
a2d24d3e07
Revert "Fix networking test"
2015-05-15 11:04:23 -07:00
Vish Kannan
d2e291e8fc
Merge pull request #8254 from jayunit100/e2e_hostPath
...
E2E hostPath test
2015-05-15 10:50:58 -07:00
Nikhil Jindal
bcdc5e3338
Merge pull request #8222 from caesarxuchao/walkthrough-example
...
Update k8s201.md to match PR#8011
2015-05-15 10:33:39 -07:00
Victor Marmol
df222ac47f
Update cAdvisor godep.
...
- Registers factories in Start(). Allows waiting for Docker.
2015-05-15 10:21:16 -07:00
Prashanth B
1f0b4c5e2a
Merge pull request #8232 from zmerlynn/i8196
...
Ensure basic DNS functionality before doing real work in configure-vm.sh
2015-05-15 10:19:35 -07:00
Tim Hockin
850e0e682e
Base the kube2sky container on busybox
2015-05-15 08:49:52 -07:00
Victor Marmol
43e4654333
Merge pull request #8292 from yujuhong/rm_podinfo
...
Remove /podInfo endpoint on kubelet
2015-05-15 08:42:02 -07:00
Filip Grzadkowski
6ec9821a69
Merge pull request #8317 from piosz/load_generator
...
Disabled e2e load test on Jenkins
2015-05-15 17:38:20 +02:00
Victor Marmol
d3c6fb0d6a
Merge pull request #8275 from dchen1107/clean
...
Install monit_watcher as a cron job (1m) to check if monit is running,
2015-05-15 08:02:55 -07:00
Victor Marmol
e7750fa0c7
Merge pull request #8274 from yujuhong/filter_terminated
...
kubelet: filter out terminated pods before rejecting pods
2015-05-15 08:02:44 -07:00
Robert Rati
30c7dbc7bd
Correct logic for failing after % of containers fail. #7790
2015-05-15 10:06:30 -04:00
Brendan Burns
28591c661d
Merge pull request #8226 from caesarxuchao/gce-pd-example-remove
...
remove examples/gce-pd
2015-05-15 15:02:40 +01:00
Filip Grzadkowski
1970e24bad
Merge pull request #8310 from wojtek-t/rename_conversion_generator
...
Refactor conversion generator
2015-05-15 15:51:12 +02:00
Wojciech Tyczynski
71a09f6b1d
Merge pull request #8309 from gmarek/fix_e2e
...
Fix kubectl e2e test
2015-05-15 15:48:12 +02:00