Commit Graph

214 Commits (372fb373aa0df3dba097dacd8e388c5ddc09a1be)

Author SHA1 Message Date
k8s-merge-robot 5d66bf9741 Merge pull request #15519 from ihmccreery/upgrade-versioning
Auto commit by PR queue bot
2015-10-15 06:30:12 -07:00
Marek Grabowski 8a5f748846 Merge pull request #15336 from ixdy/install-etcd
Move hack/travis/install-etcd.sh to hack/, and update etcd version to 2.0.12
2015-10-15 09:29:25 +02:00
Isaac Hollander McCreery 60c316b54a Upgrades and upgrade tests take versions of the form release/stable instead of stable_release:
- Refactor common and gce/upgrade.sh to use arbitrary published releases
- Update hack/get-build to use cluster/common code
- Use hack/get-build.sh in cluster upgrade test logic
2015-10-14 10:16:21 -07:00
Eric Tune ca6c950b89 Doc: apigroups, alpha, beta, experimental/v1alpha1 2015-10-14 09:06:05 -07:00
Jeff Grafton 1c5f252653 Update documentation to describe how to install etcd for testing 2015-10-13 16:06:01 -07:00
Jeff Grafton fbd58294b2 Update test helpers and dev doc to use etcd v2.0.12. 2015-10-13 16:05:56 -07:00
Mike Danese 8043c70304 fix incorrect merge MIME type in api-conventions doc 2015-10-12 11:35:30 -07:00
k8s-merge-robot 02ec1fb33c Merge pull request #13885 from smarterclayton/websocket_exec
Auto commit by PR queue bot
2015-10-10 09:52:01 -07:00
k8s-merge-robot be0c1c904c Merge pull request #14219 from Huawei-PaaS/change_params_to_extraParams
Auto commit by PR queue bot
2015-10-09 15:47:21 -07:00
Clayton Coleman 363b616908 Expose exec and logs via WebSockets
Not all clients and systems can support SPDY protocols. This commit adds
support for two new websocket protocols, one to handle streaming of pod
logs from a pod, and the other to allow exec to be tunneled over
websocket.

Browser support for chunked encoding is still poor, and web consoles
that wish to show pod logs may need to make compromises to display the
output. The /pods/<name>/log endpoint now supports websocket upgrade to
the 'binary.k8s.io' subprotocol, which sends chunks of logs as binary to
the client. Messages are written as logs are streamed from the container
daemon, so flushing should be unaffected.

Browser support for raw communication over SDPY is not possible, and
some languages lack libraries for it and HTTP/2. The Kubelet supports
upgrade to WebSocket instead of SPDY, and will multiplex STDOUT/IN/ERR
over websockets by prepending each binary message with a single byte
representing the channel (0 for IN, 1 for OUT, and 2 for ERR). Because
framing on WebSockets suffers from head-of-line blocking, clients and
other server code should ensure that no particular stream blocks. An
alternative subprotocol 'base64.channel.k8s.io' base64 encodes the body
and uses '0'-'9' to represent the channel for ease of use in browsers.
2015-10-09 14:33:40 -04:00
Brian Grant 50acaa2259 Strengthen wording about status behavior. 2015-10-09 02:13:28 +00:00
Mike Danese 1769c1c34b Merge pull request #15006 from madhusudancs/move-hooks-to-commit
Move the hooks section to the commit section.
2015-10-07 14:04:55 -07:00
David Oppenheimer b9cfab87e3 Merge pull request #14724 from HaiyangDING/PodFitsHostPorts
Replace PodFitsPorts with PodFitsHostPorts
2015-10-03 12:45:35 -07:00
Madhusudan.C.S 7dcba921cf Move the hooks section to the commit section.
It doesn't make much sense to have a separate section for hooks right now
because we only have a pre-commit hook at the moment and we should have it
setup before making the first commit. We can probably create a separate
section for hooks again when we have other types of hooks.
2015-10-02 12:30:53 -07:00
HaiyangDING 6e11cd6028 Replace PodFitsPorts with PodFitsHostPorts 2015-09-30 15:14:59 +08:00
feihujiang d62cb6ff6f Fix wrong URL in cli-roadmap doc 2015-09-30 09:49:29 +08:00
Eric Tune 83fde15083 Merge pull request #14155 from mattjmcnaughton/fix-devel-coding-conventions-markdown
Fix indendation on devel/coding-conventions.md
2015-09-23 16:46:50 -07:00
Paul Morie d5a6f53a83 Add link to dev e2e docs from api_changes doc 2015-09-23 14:45:00 -04:00
k8s-merge-robot 11c31aeca7 Merge pull request #14252 from thockin/exp_annot_convention
Auto commit by PR queue bot
2015-09-21 10:50:40 -07:00
k8s-merge-robot 9f93dceab1 Merge pull request #14112 from timothysc/e2e-docs
Auto commit by PR queue bot
2015-09-21 07:21:16 -07:00
Tim Hockin cf1141220f Clarify experimental annotation format 2015-09-20 21:00:41 -07:00
qiaolei 7f7c36dc1a Change 'params' to 'extraParams' to keep align with naming conventions
Go field names must be CamelCase. JSON field names must be camelCase. Other than capitalization of the initial letter, the two should almost always match. No underscores nor dashes in either

Please refer 'https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md#naming-conventions'
2015-09-19 09:32:17 +08:00
Matt McNaughton 44be087f7a Fix indendation on devel/coding-conventions.md
Fixing the indendation means the markdown will now render correcly on
Github.

Signed-off-by: Matt McNaughton <mattjmcnaughton@gmail.com>
2015-09-18 00:34:25 -04:00
Daniel Martí 586cb9126a Move pkg/util.Time to pkg/api/unversioned.Time
Along with our time.Duration wrapper, as suggested by @lavalamp.
2015-09-17 17:51:27 -07:00
Timothy St. Clair f958daf67d Add developer documentation on e2e testing. 2015-09-17 14:40:14 -05:00
Alex Mohr f3308dc918 Merge pull request #13683 from brendandburns/docs4
Add some documentation describing out developer/repository automation.
2015-09-16 21:53:57 -07:00
Brian Grant a21c8bcb37 A couple more naming conventions. 2015-09-15 18:24:02 +00:00
Zach Loafman fbebc276bb Fix the checkout instructions 2015-09-14 17:05:05 -07:00
Brendan Burns cacf5ae519 Add some documentation describing out developer/repository automation. 2015-09-14 13:44:55 -07:00
derekwaynecarr 543db9330c Fix broken link to submit queue 2015-09-14 13:03:11 -04:00
Daniel Smith 7a0fc719fb Fix tooling for apis/experimental's new home
* fix package name
* add a script to auto-gofmt everything, useful after grep/sed incantations
* update conversion/deep copy generation
* doc update
2015-09-11 16:06:10 -07:00
k8s-merge-robot 92f21b3fe3 Merge pull request #13790 from kevin-wangzefeng/fix_typo_in_development_md
Auto commit by PR queue bot
2015-09-10 09:48:08 -07:00
Clayton Coleman 23133a7344 Define lock coding convention 2015-09-09 18:03:54 -04:00
Kevin 0b08fc8595 fix a typo in development.md and update git_workflow.png 2015-09-10 00:22:43 +08:00
goltermann bec4c10dc4 Replace IRC with Slack in docs. 2015-09-08 15:17:39 -07:00
Paul Morie 6d96b63e62 Update api change docs 2015-09-08 13:38:15 -04:00
Quinton Hoole dd68f0b23f Merge pull request #13551 from eparis/cloudplatfrom-to-kubernetes
s|github.com/GoogleCloudPlatform/kubernetes|github.com/kubernetes/kub…
2015-09-04 12:36:01 -07:00
Piotr Szczesniak 58e9ee2c25 Merge pull request #13278 from bgrant0607/docfix2
Start on expanding code expectations (aka "The bar")
2015-09-04 13:40:24 +02:00
Eric Paris 04fc8ae3dd s|github.com/GoogleCloudPlatform/kubernetes|github.com/kubernetes/kubernetes| 2015-09-03 10:10:11 -04:00
Eric Paris f9c06397fe Fix the link to the submit-queue whitelist 2015-09-02 18:00:52 -04:00
Brian Grant 97e505849f Start on expanding code expectations (aka "The bar") 2015-09-01 20:33:59 +00:00
Harry Zhang d70b565e55 Fix inconsistency path in GOPATH doc
we set up $KPATH/src/k8s.io/kubernetes directory, but ask user to `cd` into $KPATH/src/github.com/kubernetes

Close this if I made mistaken this
2015-08-31 15:19:53 +08:00
Prashanth B 52f7833cd3 Revert "Revert "LimitRange updates for Resource Requirements Requests"" 2015-08-28 09:26:36 -07:00
Wojciech Tyczynski 2986d3eb73 Merge pull request #13235 from pwittrock/update_development_md
Update development godep instructions
2015-08-28 09:46:45 +02:00
Piotr Szczesniak 6e05b9e3a3 Revert "LimitRange updates for Resource Requirements Requests" 2015-08-27 10:50:50 +02:00
Phillip Wittrock 1ac0579d56 Update development godep instructions to work for cadvisor and changing transitive deps 2015-08-26 17:35:36 -07:00
Yu-Ju Hong 8797a72027 Merge pull request #13194 from jimmidyson/fabric8-java-client
Update fabric8 client library location
2015-08-26 15:12:19 -07:00
Yu-Ju Hong 1bae2b677d Merge pull request #12492 from derekwaynecarr/limit_range_api
LimitRange updates for Resource Requirements Requests
2015-08-26 13:02:57 -07:00
Jimmi Dyson b5318b45f1 Update fabric8 client library location 2015-08-26 10:59:03 +01:00
Nikhil Jindal b52eb159ec Merge pull request #13122 from bgrant0607/docfix3
Added more API conventions.
2015-08-24 17:54:24 -07:00