diff options
| author | Mike Danese <mikedanese@gmail.com> | 2015-06-26 14:42:48 -0700 |
|---|---|---|
| committer | Mike Danese <mikedanese@gmail.com> | 2015-06-29 14:50:41 -0700 |
| commit | 9ed56207140ce5ba468e9db71f7eaaf97789b871 (patch) | |
| tree | b2c3352da0613323a0d70a050e45fdb3815dc5d9 | |
| parent | 076fe1da6660e66243622d03d4d719ba3be35914 (diff) | |
add documentation and script on how to get recent and "nightly" builds
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | getting-builds.md | 24 |
2 files changed, 26 insertions, 0 deletions
@@ -31,4 +31,6 @@ Docs in this directory relate to developing Kubernetes. * **Faster PR reviews** ([faster_reviews.md](faster_reviews.md)): How to get faster PR reviews. +* **Getting Recent Builds** ([getting-builds.md](getting-builds.md)): How to get recent builds including the latest builds to pass CI. + []() diff --git a/getting-builds.md b/getting-builds.md new file mode 100644 index 00000000..dbad8f3a --- /dev/null +++ b/getting-builds.md @@ -0,0 +1,24 @@ +# Getting Kubernetes Builds + +You can use [hack/get-build.sh](../../hack/get-build.sh) to or use as a reference on how to get the most recent builds with curl. With `get-build.sh` you can grab the most recent stable build, the most recent release candidate, or the most recent build to pass our ci and gce e2e tests (essentially a nightly build). + +``` +usage: + ./hack/get-build.sh [stable|release|latest|latest-green] + + stable: latest stable version + release: latest release candidate + latest: latest ci build + latest-green: latest ci build to pass gce e2e +``` + +You can also use the gsutil tool to explore the Google Cloud Storage release bucket. Here are some examples: +``` +gsutil cat gs://kubernetes-release/ci/latest.txt # output the latest ci version number +gsutil cat gs://kubernetes-release/ci/latest-green.txt # output the latest ci version number that passed gce e2e +gsutil ls gs://kubernetes-release/ci/v0.20.0-29-g29a55cc/ # list the contents of a ci release +gsutil ls gs://kubernetes-release/release # list all official releases and rcs +``` + + +[]() |
