summaryrefslogtreecommitdiff
path: root/development.md
AgeCommit message (Collapse)Author
2016-03-01New Godeps LICENSE generation tool.David McMahon
Includes initial Godeps/LICENSES and Godeps/.license_file_state file to ensure fast local generation.
2016-02-10Reconcile testing docs, fixes #18606Isaac Hollander McCreery
2016-02-01Merge pull request #20366 from pmorie/local-cluster-docsk8s-merge-robot
Auto commit by PR queue bot
2016-01-30Add basic doc on local cluster to dev guidePaul Morie
2016-01-28Add benchmarks for watch over websocket and httpClayton Coleman
... and a quick doc on how to run them ``` $ godep go test ./pkg/apiserver -benchmem -run=XXX -bench=BenchmarkWatch PASS BenchmarkWatchHTTP-8 20000 95669 ns/op 15053 B/op 196 allocs/op BenchmarkWatchWebsocket-8 10000 102871 ns/op 18430 B/op 204 allocs/op ```
2016-01-14Add hack/update-godep-licenses.sh to generate Godeps/LICENSES.mdKarl Isenberg
- Add Godeps/LICENSES.md - Add verify-godep-licenses to verify that Godeps/LICENSES.md is up to date - Trigger verify-godep-licenses in the pre-commit hook only if the Godeps dir has changed - Exclude verify-godep-licenses in verify-all - Add verify-godep-licenses to make verify (used by travis) - Add verify-godep-licenses to shippable - Update dev docs to mention update-godep-licenses
2015-12-21run hack/update-generated-docs.shChao Xu
2015-12-10Make go version requirements clearerTim Hockin
2015-11-13Run update-gendocsTim Hockin
2015-10-13Update documentation to describe how to install etcd for testingJeff Grafton
2015-10-13Update test helpers and dev doc to use etcd v2.0.12.Jeff Grafton
2015-10-02Move the hooks section to the commit section.Madhusudan.C.S
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-09-10fix a typo in development.md and update git_workflow.pngKevin
2015-09-04Merge pull request #13278 from bgrant0607/docfix2Piotr Szczesniak
Start on expanding code expectations (aka "The bar")
2015-09-01Start on expanding code expectations (aka "The bar")Brian Grant
2015-08-31Fix inconsistency path in GOPATH docHarry Zhang
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-26Update development godep instructions to work for cadvisor and changing ↵Phillip Wittrock
transitive deps
2015-08-17Update dev docs to note new coveralls URLPatrick Flor
(also noting old URL for interested parties and future historians)
2015-08-12Update repository links in development.md.Robert Bailey
2015-08-11Split hack/{verify,update}-* files so we don't always go buildEric Paris
Right now some of the hack/* tools use `go run` and build almost every time. There are some which expect you to have already run `go install`. And in all cases the pre-commit hook, which runs a full build wouldn't want to do either, since it just built! This creates a new hack/after-build/ directory and has the scripts which REQUIRE that the binary already be built. It doesn't test and complain. It just fails miserably. Users should not be in this directory. Users should just use hack/verify-* which will just do the build and then call the "after-build" version. The pre-commit hook or anything which KNOWS the binaries have been built can use the fast version.
2015-08-09Copy edits for typosEd Costello
2015-08-05fixup development doc for new vanity pathMike Danese
2015-08-05Add post v1.0 PR merge details.goltermann
2015-07-30Add a note on when to use commitsTim Hockin
2015-07-20Fix capitalization of Kubernetes in the documentation.Alex Robinson
2015-07-20Absolutize links that leave the docs/ tree to go anywhere other thanDavid Oppenheimer
to examples/ or back to docs/
2015-07-19Merge pull request #11551 from a-robinson/docsBrian Grant
Improve syntax highlighting for design and devel docs
2015-07-19Replace ``` with ` when emphasizing something inline in docs/Alex Robinson
2015-07-19Improve devel docs syntax highlighting.Alex Robinson
2015-07-17Run gendocsTim Hockin
2015-07-17apply changesDaniel Smith
2015-07-17Better scary messageTim Hockin
2015-07-14Run gendocsTim Hockin
2015-07-14Run gendocsTim Hockin
2015-07-13Apply mungedocs changesDaniel Smith
2015-07-13Merge pull request #10843 from jiangyaoguo/change-get-minions-in-docsTim Hockin
change "get minions" to "get nodes" in docs
2015-07-13Run gendocs and mungesTim Hockin
2015-07-10change get minions cmd in docsjiangyaoguo
2015-06-09Consolidate git setup documentation.Jeffrey Paine
Closes #9091
2015-05-15Add ga-beacon analytics to gendocs scriptsJeff Lowdermilk
hack/run-gendocs.sh puts ga-beacon analytics link into all md files, hack/verify-gendocs.sh verifies presence of link.
2015-05-13Switch git hooks to use pre-commitTim Hockin
2015-04-26Corrected some typosGeorge Kuan
2015-04-15Add documentation to help new contributors with write accessRobert Bailey
from accidentally pushing upstream.
2015-03-30Proposed guidelines for new Getting-started-guides.Eric Tune
# *** ERROR: *** docs are out of sync between cli and markdown # run hack/run-gendocs.sh > docs/kubectl.md to regenerate # # Your commit will be aborted unless you regenerate docs. COMMIT_BLOCKED_ON_GENDOCS
2015-03-17Add -v to `go run hack/e2e.go -ctl` commandsYu-Ju Hong
2015-03-05Make slides visible to the public, fix a typo.Quinton Hoole
Moved to account quintonh@gmail.com to make it visible to the public without any login. Correct "push request" to "pull request".
2015-03-04Add documentation about the Kubernetes Github Flow.Quinton Hoole
Added an animation (and a link to it) detailing the standard Kubernetes Github Flow.
2015-02-19Update development doc on how to generate code coverage reports.Jeff Grafton
2015-02-18Combine the two documentation sections on how to use godeps.Alex Robinson
2015-02-18Document current ways to run a single e2eZach Loafman