Files
website/v1.1/docs/devel/getting-builds.md
T
2016-02-10 16:55:31 -08:00

1.9 KiB

layout, title
layout title
docwithnav Getting Kubernetes Builds

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).

Run ./hack/get-build.sh -h for its usage.

For example, to get a build at a specific version (v1.0.2):

{% highlight console %} {% raw %} ./hack/get-build.sh v1.0.2 {% endraw %} {% endhighlight %}

Alternatively, to get the latest stable release:

{% highlight console %} {% raw %} ./hack/get-build.sh release/stable {% endraw %} {% endhighlight %}

Finally, you can just print the latest or stable version:

{% highlight console %} {% raw %} ./hack/get-build.sh -v ci/latest {% endraw %} {% endhighlight %}

You can also use the gsutil tool to explore the Google Cloud Storage release buckets. Here are some examples:

{% highlight sh %} {% raw %} 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 {% endraw %} {% endhighlight %}

Analytics