Commit Graph

56 Commits

Author SHA1 Message Date
joe2far 9298db79ff Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
David McMahon 4a5d209960 Updated docs and examples for release-1.3. 2016-06-13 12:24:34 -07:00
Dawn Chen 94ac5ff7f0 Revert "Versioning docs and examples for v1.4.0-alpha.0."
This reverts commit cce9db3aa9555671c5ddf69549b46ed0fd7e472a.
2016-06-10 16:46:46 -07:00
David McMahon 2f5640b791 Versioning docs and examples for v1.4.0-alpha.0. 2016-06-10 14:55:35 -07:00
k8s-merge-robot 2bb6a7ac1c Merge pull request #24231 from mikebrow/design-docs-80col-updates
Automatic merge from submit-queue

Cleans up line wrap at 80 cols and some minor editing issues 

Address line wrap issue #1488.  Also cleans up other minor editing issues in the docs/design/* tree such as spelling errors. 

Signed-off-by: mikebrow <brownwm@us.ibm.com>
2016-04-28 06:49:46 -07:00
Clayton Coleman b2a0bc7011 Protobuf doc changes 2016-04-27 21:15:36 -04:00
mikebrow 16d43fd660 updates to devel/*.md files
Signed-off-by: mikebrow <brownwm@us.ibm.com>
2016-04-19 13:31:01 -05:00
David McMahon e0770531ab Update the latestReleaseBranch to release-1.2 in the munger. 2016-03-08 18:59:28 -08:00
Eric Tune dfa00a5742 Document Unions, conventions for adding to Unions. 2016-02-03 13:25:18 -08:00
Brendan Burns e2ff274270 Merge pull request #18047 from caesarxuchao/munger-tag-new
Stop munger produce the link to a release version doc if it doesn't exit in the release branch
2015-12-22 10:35:20 -08:00
Ed Costello b3849ceb44 Copy edits for typos 2015-12-22 09:30:48 -05:00
Chao Xu 83db13cc2e run hack/update-generated-docs.sh 2015-12-21 10:41:30 -08:00
Clayton Coleman ecc0cc2d5b Document that int32 and int64 must be used in external types 2015-12-20 14:36:34 -05:00
Tim Hockin 88882f06f4 Clean up and document validation strings
Also add a detail string for Required and Forbidden.  Fix tests.
2015-12-18 09:40:50 -08:00
Tim Hockin 2743354dee api-conventions: Namespace is label, not subdomain 2015-12-14 20:38:34 -08:00
k8s-merge-robot e2203f9397 Merge pull request #16628 from caesarxuchao/change-error-type
Auto commit by PR queue bot
2015-11-30 17:21:52 -08:00
Chao Xu b0542299ca change the "too old resource version" error from InternalError to 410 Gone. 2015-11-25 10:27:03 -08:00
Tim St. Clair e1ded93ff3 Clarify when pointers are used for optional types 2015-11-23 18:06:23 -08:00
k8s-merge-robot 5a02a9ad0e Merge pull request #17377 from bgrant0607/docfix2
Auto commit by PR queue bot
2015-11-19 08:18:18 -08:00
Brian Grant 1344366406 Address feedback 2015-11-18 17:30:19 +00:00
Brian Grant 31832344a1 Add conventions about primitive types. 2015-11-17 15:18:17 +00:00
Tim Hockin 87d268af9b clarify experimental annotations doc 2015-11-16 10:52:26 -08:00
Tim Hockin ff8cdfcde8 Run update-gendocs 2015-11-13 13:57:57 -08: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
Eric Tune 0b10e0b16a Documented required/optional fields. 2015-10-19 11:16:24 -07:00
Tim Hockin 7707173def update docs on experimental annotations 2015-10-14 15:31:37 -07:00
Mike Danese e2dd98e605 fix incorrect merge MIME type in api-conventions doc 2015-10-12 11:35:30 -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
Tim Hockin efee6727cd Clarify experimental annotation format 2015-09-20 21:00:41 -07: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
Brian Grant 19ba8e37c4 A couple more naming conventions. 2015-09-15 18:24:02 +00:00
Brian Grant ca9f771cf9 Start on expanding code expectations (aka "The bar") 2015-09-01 20:33:59 +00:00
Nikhil Jindal f8bbb8bbe9 Merge pull request #13122 from bgrant0607/docfix3
Added more API conventions.
2015-08-24 17:54:24 -07:00
Brian Grant c90e062aec Added more API conventions. 2015-08-24 23:25:01 +00:00
Brian Grant d02af2b80c Add duration naming conventions. 2015-08-18 23:44:03 +00:00
Brian Grant bc21d6f1f4 Update API conventions. Add kubectl conventions.
Ref #12322. Fixes #6797.
2015-08-14 01:32:38 +00:00
Mike Danese 4c0410dd60 rewrite all links to issues to k8s links 2015-08-05 21:11:11 -07:00
Eric Paris 9a5c3748cc Fix trailing whitespace in all docs 2015-07-30 20:41:30 -04:00
Alex Robinson e0554bbf16 Fix capitalization of Kubernetes in the documentation. 2015-07-20 14:39:36 -07:00
Brian Grant 56dd6eaed6 Merge pull request #11551 from a-robinson/docs
Improve syntax highlighting for design and devel docs
2015-07-19 08:45:54 -07:00
Alex Robinson 753fab889e Replace ``` with ` when emphasizing something inline in docs/ 2015-07-19 09:05:17 +00:00
Alex Robinson dc711364b0 Fix gendocs 2015-07-19 09:05:17 +00:00
Alex Robinson 883791a848 Improve devel docs syntax highlighting. 2015-07-19 08:54:49 +00:00
David Oppenheimer bc7325e085 Merge pull request #11452 from thockin/docs-munge-headerlines
Munge headerlines
2015-07-17 15:52:08 -07:00
Tim Hockin da3e5f056b Run gendocs 2015-07-17 15:35:43 -07:00
Tim Hockin e1a268be83 Make TOC munge include blank line before TOC 2015-07-17 15:06:54 -07:00