Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 2.33 KB

getting-builds.md

File metadata and controls

60 lines (44 loc) · 2.33 KB

WARNING WARNING WARNING WARNING WARNING

PLEASE NOTE: This document applies to the HEAD of the source tree

If you are using a released version of Kubernetes, you should refer to the docs that go with that version.

The latest 1.0.x release of this document can be found [here](http://releases.k8s.io/release-1.0/docs/devel/getting-builds.md).

Documentation for other releases can be found at releases.k8s.io.

Getting Kubernetes Builds

You can use 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

Analytics