Commit Graph

394 Commits

Author SHA1 Message Date
Chao Xu 3f40d20807 address timstclair's comments 2015-11-05 15:44:20 -08:00
Chao Xu 342265e8c1 address lavalamp's comment 2015-11-04 15:53:29 -08:00
Chao Xu 33c86129c9 add a guide on how to create an API group 2015-11-04 14:30:34 -08:00
Isaac Hollander McCreery b6745eb538 Fix releasing clause about cutting beta releases 2015-11-03 09:26:01 -08:00
Isaac Hollander McCreery ab92564429 Update docs and prompts for better dry-runs and no more versionizing docs 2015-11-02 15:40:06 -08:00
Isaac Hollander McCreery 37361519a6 Versioned beta releases 2015-11-02 15:40:06 -08:00
Isaac Hollander McCreery bea654021f Remove old releasing illustrations 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery 1e19e8e1c8 Move to release/ 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery a17031110e Fixups of docs and scripts 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery b264864ea6 Doc fixup to reflect script reality 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery 2650762ee4 Proposed design for release infra 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery 87e5266e0a TODOs 2015-11-02 09:27:52 -08:00
Isaac Hollander McCreery 6a9d36de0b Remove out-of-date information about releasing 2015-11-02 09:27:52 -08:00
hurf 6f050771d9 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 4cb900b251 Merge pull request #16209 from erictune/fix-devel-doc
In devel docs, refer to .kube/config
2015-10-26 17:17:17 -07:00
Robert Wehner 202e7b6567 Fix dead links to submit-queue
* https://github.com/kubernetes/contrib/pull/122 merged submit-queue into mungegithub. This fixes links to the old submit-queue location.
* Standardized to use "submit-queue" instead of "submit queue". Just picked one since both were used.
* Fixes dead link to on-call wiki.
2015-10-24 20:02:54 -06:00
Eric Tune 2df426d3f2 In devel docs, refer to .kube/config
not .kubernetes_auth
2015-10-23 15:44:42 -07:00
Tim Hockin 536afb79a0 Merge pull request #16197 from thockin/docs-nits
syntax is 'go' not 'golang'
2015-10-23 15:08:58 -07:00
Tim Hockin 27b87616c7 syntax is 'go' not 'golang' 2015-10-23 15:08:27 -07:00
dingh 6579078d9d fix typo in api-converntions.md 2015-10-23 13:46:32 +08:00
k8s-merge-robot 87802fb300 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 dcbc922e37 Merge pull request #15566 from erictune/api-conv
Auto commit by PR queue bot
2015-10-19 16:06:55 -07:00
Eric Tune 0b10e0b16a Documented required/optional fields. 2015-10-19 11:16:24 -07:00
Wojciech Tyczynski 21ea4045ce api_changes.md changes for json-related code autogeneration. 2015-10-19 19:37:53 +02:00
k8s-merge-robot 1027a55bae Merge pull request #15519 from ihmccreery/upgrade-versioning
Auto commit by PR queue bot
2015-10-15 06:30:12 -07:00
Marek Grabowski 3456f3745e 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 7707173def update docs on experimental annotations 2015-10-14 15:31:37 -07:00
Isaac Hollander McCreery bb2aa8770f 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 576acdb7fb Doc: apigroups, alpha, beta, experimental/v1alpha1 2015-10-14 09:06:05 -07:00
Jeff Grafton aee2383f9b Update documentation to describe how to install etcd for testing 2015-10-13 16:06:01 -07:00
Jeff Grafton d587e3b9f9 Update test helpers and dev doc to use etcd v2.0.12. 2015-10-13 16:05:56 -07:00
Mike Danese e2dd98e605 fix incorrect merge MIME type in api-conventions doc 2015-10-12 11:35:30 -07:00
k8s-merge-robot 4693ee23d1 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 dab14bc026 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 499f571b4e 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 b0884c7373 Strengthen wording about status behavior. 2015-10-09 02:13:28 +00:00
Mike Danese 088d1f9bc5 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 7ddf87cdfd Merge pull request #14724 from HaiyangDING/PodFitsHostPorts
Replace PodFitsPorts with PodFitsHostPorts
2015-10-03 12:45:35 -07:00
Madhusudan.C.S 8589eb45f5 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 d29c41354e Replace PodFitsPorts with PodFitsHostPorts 2015-09-30 15:14:59 +08:00
feihujiang d3d7bf1866 Fix wrong URL in cli-roadmap doc 2015-09-30 09:49:29 +08:00
Eric Tune 8740e638ef 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 7b4fa0ae90 Add link to dev e2e docs from api_changes doc 2015-09-23 14:45:00 -04:00
k8s-merge-robot a6c57e070b 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 c3cbbe05ea Merge pull request #14112 from timothysc/e2e-docs
Auto commit by PR queue bot
2015-09-21 07:21:16 -07:00
Tim Hockin efee6727cd Clarify experimental annotation format 2015-09-20 21:00:41 -07:00
qiaolei 6d04d61074 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 292225b77b 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í c0e44162bc 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 3692d4871f Add developer documentation on e2e testing. 2015-09-17 14:40:14 -05:00