Commit Graph

237 Commits

Author SHA1 Message Date
Isaac Hollander McCreery
e5449f7d42 Cleanup for versioning 2015-11-06 11:35:16 -08:00
k8s-merge-robot
0b183f43fd Merge pull request #16574 from hurf/stop_doc
Auto commit by PR queue bot
2015-11-05 19:43:21 -08:00
Isaac Hollander McCreery
a9fc43d120 Fix releasing clause about cutting beta releases 2015-11-03 09:26:01 -08:00
Isaac Hollander McCreery
346676280f Update docs and prompts for better dry-runs and no more versionizing docs 2015-11-02 15:40:06 -08:00
Isaac Hollander McCreery
bc9feec409 Versioned beta releases 2015-11-02 15:40:06 -08:00
Isaac Hollander McCreery
235aaf73c4 Remove old releasing illustrations 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery
72a586db7f Move to release/ 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery
f2b8edddae Fixups of docs and scripts 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery
1b0082569b Doc fixup to reflect script reality 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery
48eb83a499 Proposed design for release infra 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery
64f456343c TODOs 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery
d9b583e631 Remove out-of-date information about releasing 2015-11-02 09:27:52 -08:00
hurf
ce35bb4208 Remove trace of "kubectl stop"
Remove doc and use of "kubectl stop" since it's deprecated.
2015-10-30 14:12:20 +08:00
Daniel Smith
37ee9584cb Merge pull request #16209 from erictune/fix-devel-doc
In devel docs, refer to .kube/config
2015-10-26 17:17:17 -07:00
Eric Tune
6bff8df31c In devel docs, refer to .kube/config
not .kubernetes_auth
2015-10-23 15:44:42 -07:00
Tim Hockin
c28ddf9ff8 Merge pull request #16197 from thockin/docs-nits
syntax is 'go' not 'golang'
2015-10-23 15:08:58 -07:00
Tim Hockin
76769d87f0 syntax is 'go' not 'golang' 2015-10-23 15:08:27 -07:00
dingh
b3f19128cd fix typo in api-converntions.md 2015-10-23 13:46:32 +08:00
k8s-merge-robot
6dc3dcf36a Merge pull request #15414 from thockin/exp-beta-annotations
Auto commit by PR queue bot
2015-10-20 17:45:32 -07:00
k8s-merge-robot
b5c0984d4c Merge pull request #15566 from erictune/api-conv
Auto commit by PR queue bot
2015-10-19 16:06:55 -07:00
Eric Tune
a1549496ee Documented required/optional fields. 2015-10-19 11:16:24 -07:00
Wojciech Tyczynski
4a4831906c api_changes.md changes for json-related code autogeneration. 2015-10-19 19:37:53 +02:00
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
Tim Hockin
0bf5bfff5d update docs on experimental annotations 2015-10-14 15:31:37 -07: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