Commit Graph

2335 Commits

Author SHA1 Message Date
Daniel Smith
0d69393a43 make watch actually return an error when there's an error 2014-09-19 17:53:55 -07:00
Daniel Smith
06bb87c6c1 Merge pull request #1386 from brendandburns/auth
Add authenticated TLS support to the client.
2014-09-19 16:05:27 -07:00
Daniel Smith
4aecdce258 Don't pass empty labels (looks weird to POST with a label set) 2014-09-19 16:04:55 -07:00
Brendan Burns
8dff6f12d7 Add authenticated TLS support to the client. 2014-09-19 15:43:23 -07:00
Daniel Smith
6741704761 Merge pull request #1377 from smarterclayton/benchmarks
Add some benchmarks and minor test-go enhancements
2014-09-19 15:00:47 -07:00
Clayton Coleman
9bbc572f36 Add benchmarks to Travis 2014-09-19 17:17:54 -04:00
Clayton Coleman
463a16af36 Add benchmarks for API tests 2014-09-19 17:17:54 -04:00
Filipe Brandenburger
334f9dc772 Merge pull request #1384 from brendandburns/release
Release 0.3
2014-09-19 13:32:47 -07:00
Daniel Smith
bdc8d898fa Merge pull request #1376 from ddysher/minion-test-fix
Fix minion registry test insert.
2014-09-19 12:50:29 -07:00
Brendan Burns
b2b3d2e16b Add the 0.3-dev commit. 2014-09-19 11:15:57 -07:00
Clayton Coleman
54e0af8b96 Allow -race to be disabled in test-go.sh 2014-09-19 14:09:42 -04:00
Clayton Coleman
855482c30f Expand syntax validation for other examples 2014-09-19 13:14:33 -04:00
Brendan Burns
89eff1d0d8 Rev the version to 0.3 2014-09-19 10:11:03 -07:00
Brendan Burns
06316f4861 Merge pull request #1375 from ddysher/pod-rest-test
Out of place test table
2014-09-19 10:03:01 -07:00
Brendan Burns
68ee4417fc Merge pull request #1292 from smarterclayton/v1beta2_client
Allow client and server to vary the API versions they use
2014-09-19 10:00:36 -07:00
Andrew Smith
abc218aba3 Change etcd install from go get to binaries from releases
To address #1380, current version of etcd on master is incompatible with current version of kubernetes on master
2014-09-19 15:53:19 +01:00
bgrant0607
bfbe058ee3 Merge pull request #1369 from brendandburns/docs
Initial add of a walkthrough of basic Kubernetes concepts.
2014-09-18 21:00:01 -07:00
Brendan Burns
28f44b0bca Merge pull request #1372 from nictuku/master
Minor doc updates
2014-09-18 20:46:19 -07:00
Clayton Coleman
5483333e29 Allow server and client to take api version as argument
* Defaults to v1beta1
* apiserver takes -storage_version which controls etcd storage version
  and the version of the client used to connect to other apiservers
* Changed signature of client.New to add version parameter
* All controller code and component code prefers the oldest (most common)
  server version
2014-09-18 23:27:28 -04:00
Clayton Coleman
ca5355908f Expose v1beta2 API group 2014-09-18 23:24:05 -04:00
Brendan Burns
29cf1a783b Initial add of a walkthrough of basic Kubernetes concepts. 2014-09-18 20:22:50 -07:00
Deyuan Deng
0c8d9ba870 Fix minion registry test insert. 2014-09-18 23:04:10 -04:00
Deyuan Deng
f966a51fc0 Out of place test table 2014-09-18 21:44:52 -04:00
Tim Hockin
c90d62d512 Merge pull request #1371 from brendandburns/healthz
Fix the build.
2014-09-18 15:36:55 -07:00
Yves Junqueira
aab58c8033 Rudder has been renamed to Flannel. Update doc references.
See: 81dac46496
2014-09-19 00:36:54 +02:00
Yves Junqueira
412aab302a Fix typo in cluster/local/config-default.sh 2014-09-19 00:36:54 +02:00
Brendan Burns
edf3eb04e2 Fix the build. 2014-09-18 15:29:17 -07:00
Daniel Smith
12b677ad56 Merge pull request #1356 from brendandburns/healthz
Adjust the logic, so that if the apiserver restarts, or has no pod info
2014-09-18 15:15:24 -07:00
Brendan Burns
ed6c5edda4 Merge pull request #1367 from erictune/volumes_user_documentation
Volumes user documentation
2014-09-18 15:11:43 -07:00
Eric Tune
1c3bbc8c72 Fix typos. 2014-09-18 14:21:00 -07:00
Eric Tune
1f904d26b0 Documentation for users on volumes (current state). 2014-09-18 14:11:50 -07:00
Joe Beda
e25171969b Merge pull request #1363 from MSOpenTech/azure-readme
Minor update to Azure getting started guide.
2014-09-18 11:35:52 -07:00
Joe Beda
01a1723e7f Merge pull request #1364 from smarterclayton/longer_hack_test_timeout
Increase the hack/test-go.sh timeout to account for more fuzzing
2014-09-18 11:31:06 -07:00
Clayton Coleman
27bbd7df56 Increase the hack/test-go.sh timeout to account for more fuzzing
We fuzz v1beta1 and v1beta2 now, so fuzzer takes twice as long.
2014-09-18 14:17:32 -04:00
Jeff Mendoza
feae137047 Minor update to Azure getting started guide. 2014-09-18 10:57:39 -07:00
Gurpartap Singh
b7d1b1ac3c Updated guestbook based on suggestions in the pull request
Port of current guestbook's README.md

Fix guestbook pod and service names

Add go boilerplate

Use role label for redis pods

Give service.containerPort a name based value

This gives better env variable keys like REDIS_MASTER_SERVICE_REDIS_SERVER_ADDR, etc.

Avoid unnecessarily long names for service (esp in env vars)

Adding guestbook deploy/destroy scripts for k8s

These are probably only useful for quick testing. Maybe remove them
before merging the pull request.

Part of avoiding long names for services

Update Dockerfiles to git clone from Google's repo

Use correct service names while deleting them

Fix the script usage path.

K8s is not go gettable. Use git clone instead.

Using my fork in the Dockerfile to release and update to the docker hub
image.

Doesn't delete all pods if you remove controller too soon

Run the command in a shell to substitute env vars. Workaround for GoogleCloudPlatform/kubernetes#1309

GoogleCloudPlatform in lieu of my fork in Dckrfile

Some directory structure changes for guestbook src

README that explains the build process for source

Strip down the html and css to absolute essentials

Reformat JS according to Google's guidelines

Also added code to set random colors for elements.

Handle repetitive error checks using a common func

Also uses @roberthbailey’s stripped down code for reading env vars

infoString isn't really a string. Use info instead

Remove deploy.sh/destroy.sh scripts

Bind submit instead of keypress to capture submit

Add links to /env and /info in the footer

Reformat the JS

Incorporating suggestions by @filbranden

License boilerplate and some fixes to release.sh

Update README.md

Update README.md

Add building on boot2docker info to README

Accept docker bin path as a param for building

Use kubernetes user to host the image on registry

Don't get included in k8s's recursive build deps

https://github.com/GoogleCloudPlatform/kubernetes/pull/1299#discussion_r
17638061
2014-09-18 22:37:52 +05:30
Brendan Burns
a4912d7203 Merge pull request #1342 from jwforres/websocket_connection_header
Match any Connection header that contains the Upgrade token for websocke...
2014-09-18 09:47:07 -07:00
Brendan Burns
cb158e0d72 Merge pull request #1361 from jbeda/vsphere-docs
Fix up source install instructions for VSphere
2014-09-18 09:46:53 -07:00
Joe Beda
a1071288ae Fix up source install instructions for VSphere
I skip using `go get` as it downloads all of the dependencies. But since we are vendoring using godep without rewriting imports, this means we download a bunch of stuff we don't use.  Instead, just clone the repo directly.

Fixes #1360.
2014-09-18 09:09:49 -07:00
Joe Beda
4487f311ab Merge pull request #1326 from lavalamp/scheduler
Fix cache to use the "List then Watch" pattern.
2014-09-18 09:00:52 -07:00
Jessica Forrester
f2732f18a7 Match any Connection header that contains the Upgrade token for websockets 2014-09-18 09:26:21 -04:00
jhadvig
9f34eaef9e kubelet server test cases 2014-09-18 14:17:10 +02:00
Brendan Burns
17cbde0c5a Adjust the logic, so that if the apiserver restarts, or has no pod info
for some other reason, pods on missing machines are still 'terminated'
2014-09-17 21:57:11 -07:00
Brendan Burns
f7a5ec3c36 Merge pull request #1349 from nictuku/master
Local install: add link to Docker install instructions
2014-09-17 21:29:17 -07:00
Daniel Smith
b3bfef9127 Merge pull request #1347 from brendandburns/healthz
Fix a problem where if a minion went missing, we still thought the pod was running.
2014-09-17 18:26:44 -07:00
Brendan Burns
99586b4da4 Fix a problem where if a minion went missing, we still thought the pod was running.
Also convert some tests to table driven.
2014-09-17 18:16:52 -07:00
Joe Beda
7f05db56c5 Merge pull request #1350 from brendandburns/privilege
fix salt.
2014-09-17 17:14:42 -07:00
Brendan Burns
bb829ce8f6 fix salt. 2014-09-17 17:13:41 -07:00
Yves Junqueira
21cb9d19c2 Local install: add link to Docker install instructions 2014-09-18 01:23:26 +02:00
Joe Beda
698fbddc9d Merge pull request #1341 from VojtechVitek/update_etcd_readme
Update etcd installation steps in README
2014-09-17 16:00:11 -07:00