Commit Graph

16547 Commits

Author SHA1 Message Date
Justin Santa Barbara
638a19eb29 Spelling (non-code): test/e2e/resize_nodes.go 2015-07-26 22:27:07 -04:00
Justin Santa Barbara
8ce6c2db96 e2e: Check that node is healthy before isolating from master
We simulate network failure, check the node is offline, and then check
it recovers.  This adds a check that the node is online before simulating
network failure.
2015-07-26 22:27:07 -04:00
Justin Santa Barbara
584a6f27ad Introduce framework in e2e services; should log events on failure
Once #8887 merges this should show errors in load balancer creation.

Even before then, it may show another error.

Bug #8892
2015-07-26 18:55:34 -04:00
Justin Santa Barbara
23a190cd97 Fixes per review
Primarily go style issues; also a TODO that really exponential backoff
is the correct policy for API call retries.
2015-07-26 18:30:02 -04:00
Justin Santa Barbara
092d407a48 AWS: Fix race in security-group read/create
We need to find the ID for a named security group, or create a new one.

We do this by listing the security groups, and then doing a create if we
cannot find one.  This is a race though; against another thread if the
AWS API were consistent, but generally because the AWS API is actually
eventually consistent.

We wrap it in a retry loop.
2015-07-26 18:16:05 -04:00
Justin Santa Barbara
d7bace23ff AWS: Fix race-condition in tagging of security group
When we create a security-group in the AWS API, there is sometimes
a delay before we can tag it (the AWS API is eventually consistent).

So we wrap CreateTags in a simple retry loop.
2015-07-26 18:16:05 -04:00
Tim Hockin
fbc0c7558e Apply version subst multiple times per line 2015-07-25 13:46:09 -07:00
Daniel Dreier
8130a4c390 Fix typo in service account documentation
Extra "c" in "serviceaccounts" made example not work when copy-pasting.
2015-07-25 12:32:00 -07:00
Gurvinder Singh
df3ee6974b Merge branch 'master' of https://github.com/gurvindersingh/kubernetes
and fixed the email address issue
2015-07-25 21:16:37 +02:00
Gurvinder Singh
5f48898498 added indent for sleep 2015-07-25 21:16:06 +02:00
Gurvinder Singh
2a6546cada fixed conflict with the current upstream master 2015-07-25 21:15:34 +02:00
Gurvinder Singh
68f0db84cb added indent for sleep 2015-07-25 21:05:45 +02:00
Gurvinder Singh
a585357d21 fixed conflict with the current upstream master 2015-07-25 20:57:24 +02:00
jiangyaoguo
72e899e1b5 refector rbd volume to seperate builder and cleaner 2015-07-26 01:11:25 +08:00
David Oppenheimer
2236fee028 Fix link to node selector documentation. 2015-07-24 23:04:59 -07:00
Chao Xu
464385281b add a tool in cmd/ to check links in go file. Currently it's only used to check the links in api descriptions (pkg/api/.../types.go). 2015-07-24 20:21:16 -07:00
Mike Danese
5bd82ffe6d Merge pull request #11265 from mbforbes/gkeBashlog
Cleanup GKE bash logging
2015-07-24 18:51:36 -07:00
Mike Danese
078ec7518b Merge pull request #11825 from aveshagarwal/ansible-fixes
Fixes ansible errors.
2015-07-24 18:51:00 -07:00
Chao Xu
44c4f54acf update api/swagger-spec/ 2015-07-24 18:08:05 -07:00
Chao Xu
6153aba30a update links in docs/api-reference/definitions.html 2015-07-24 18:08:05 -07:00
Chao Xu
aa758e64f7 update the links in pkg/api/types.go 2015-07-24 18:08:05 -07:00
Chao Xu
cbeed829b7 update the links in v1/types.go 2015-07-24 18:08:05 -07:00
Mike Danese
eb3d6822d0 Merge pull request #10673 from stefwalter/proxy-split-hostport-without-port
kubectl: Handle splitting host:port when no port is present
2015-07-24 17:23:05 -07:00
Mike Danese
c0acfbcd4b Merge pull request #11421 from nikhiljindal/exposeServcPort
Updating kubectl expose to extract ports from the service being cloned
2015-07-24 17:16:31 -07:00
Mike Danese
cfe41dc061 Merge pull request #11729 from smarterclayton/make_exec_flexible
Exec should be easier to reuse as a command
2015-07-24 17:15:52 -07:00
Tim Hockin
7b0437a281 Merge pull request #11847 from thockin/fix-ghpages-404s
Add stub md files so gh-pages importer keeps them
2015-07-24 17:08:26 -07:00
Max Forbes
bd9e09ba00 Implement 'Nodes Network' test for GKE 2015-07-24 17:05:30 -07:00
Tim Hockin
0dbcb51ddd Add stub md files so gh-pages importer keeps them 2015-07-24 16:56:08 -07:00
Tim Hockin
023e7eabb3 Merge pull request #11842 from thockin/fix-ghpages-404s
Add whatisk8s.md to master
2015-07-24 16:37:14 -07:00
Tim Hockin
0df0418c48 Add whatisk8s.md to master 2015-07-24 16:19:23 -07:00
Avesh Agarwal
0d4851a4ef Ansible updates for Atomic. 2015-07-24 18:29:55 -04:00
Mike Danese
6ca0151ff1 Merge pull request #11807 from mwielgus/scale_rc_fix
Add scale retry in ScaleRC in test/e2e/util.go
2015-07-24 15:25:48 -07:00
Mike Danese
2c8f055ed8 Merge pull request #10631 from liggitt/service_account_describer
Fix service account describer
2015-07-24 15:24:24 -07:00
Mike Danese
fd4a4ba990 Merge pull request #11252 from nikhiljindal/verDocs
Stop allowing unnamespaced POST for namespaced objects
2015-07-24 15:23:56 -07:00
nikhiljindal
242910e57c kubectl expose should extract ports from service 2015-07-24 15:17:48 -07:00
Mike Danese
e1b92dde1f Merge pull request #11822 from bprashanth/inttest
Fix resource aliasing test flake
2015-07-24 15:17:48 -07:00
Clayton Coleman
0b5410f30f Exec should be easier to reuse as a command
We have a few use cases where we want to have shortcut commands
for common behavior. In these cases, we want to default commands
with a simpler syntax, so being able to reuse Exec from code but
not share the same arguments is useful.

In this case, we're introducing 'rsh' which tries to run exec -itp --
bash.
2015-07-24 18:14:28 -04:00
Yu-Ju Hong
12a252bd8b e2e: add resourceMontior to poll resource usages on the nodes
This change adds resourceMontior, which spawns a goroutine per node to poll the
container stats for known, relevant containers, computes the resource usage and
stores the data. Users can then examine the data in the buffer to get resource
of each individual containers.
2015-07-24 15:13:36 -07:00
Mike Danese
94d62eba21 Merge pull request #11706 from pat2man/fix-cassandra
Updated Cassandra Dockerfile to include procps.
2015-07-24 14:46:42 -07:00
Mike Danese
d397d88499 Merge pull request #11390 from jfchevrette/fix-vagrant-eth1
Vagrant: virtualbox host-only network (eth1) not working after network restart
2015-07-24 13:12:24 -07:00
Mike Danese
6656f4d051 Merge pull request #11006 from JanetKuo/e2e-kubectl-run
E2E tests for kubectl run command
2015-07-24 13:08:54 -07:00
Mike Danese
4c52257be3 Merge pull request #11571 from kargakis/handle-aliases-in-comma-sep-args
Handle aliases in comma-separated args
2015-07-24 13:08:28 -07:00
Mike Danese
01349cdbfa Merge pull request #11786 from a-robinson/fluentd
Update fluentd-gcp images to include latest Dockerfile changes
2015-07-24 12:40:41 -07:00
Mike Danese
647eb0ba8b cleanup cassandra example to conform to doc standards 2015-07-24 12:38:26 -07:00
Mike Danese
39a7fc3706 Merge pull request #11552 from jiangyaoguo/new-builder-cleaner-for-gce-pd
Refactor gec-pd to seperate builder and cleaner
2015-07-24 12:18:21 -07:00
Prashanth Balasubramanian
f4fe40e2d1 Delete overlapping controllers, add clarity to docs 2015-07-24 12:13:26 -07:00
nikhiljindal
2f946b7aee Stop allowing unnamespaced POST for namespaced objects 2015-07-24 12:03:19 -07:00
Mike Danese
0b14613361 Merge pull request #11622 from nikhiljindal/refactormark-new-version
Extracting out the code to versionize docs from mark-new-version and fixing a bunch of issues
2015-07-24 11:32:40 -07:00
Mike Danese
a4a48f5849 Merge pull request #11802 from jiangyaoguo/new-builder-cleaner-for-iscis
Refector iscsi volume to seperate builder and cleaner
2015-07-24 11:27:36 -07:00
Mike Danese
52282b1a36 Merge pull request #11300 from mwielgus/kubectl_replace_tempfile
Dump stdin to a temporary file in kubectl replace --force
2015-07-24 11:23:25 -07:00