From e37ea3679ac70d771912e33f23e047be7d4e6ce8 Mon Sep 17 00:00:00 2001 From: Joe Beda Date: Thu, 13 Nov 2014 22:22:35 -0800 Subject: [PATCH] Point our docs at the releases page --- docs/getting-started-guides/binary_release.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/getting-started-guides/binary_release.md b/docs/getting-started-guides/binary_release.md index ccd41d90198..59812425357 100644 --- a/docs/getting-started-guides/binary_release.md +++ b/docs/getting-started-guides/binary_release.md @@ -4,22 +4,20 @@ You can either build a release from sources or download a pre-built release. If ### Prebuilt Binary Release -Soon, we will have a list of numbered and nightly releases. Until then, you can download a development release/snapshot from [here](http://storage.googleapis.com/kubernetes-releases-56726/devel/kubernetes.tar.gz). +The list of binary releases is available for download from the [GitHub Kubernetes repo release page](https://github.com/GoogleCloudPlatform/kubernetes/releases). -Unpack this tar file on Linux or OS X, cd to the created `kubernetes/` directory, and then follow the getting started guide for your cloud. +Download the latest release and unpack this tar file on Linux or OS X, cd to the created `kubernetes/` directory, and then follow the getting started guide for your cloud. ### Building from source Get the Kubernetes source. If you are simply building a release from source there is no need to set up a full golang environment as all building happens in a Docker container. -**TODO:** Change this to suggest using a numbered release once we have one with the new build scripts. - Building a release is simple. ```bash git clone https://github.com/GoogleCloudPlatform/kubernetes.git cd kubernetes -build/release.sh +make release ``` For more details on the release process see the [`build/` directory](../../build)