Import release notes (#6999)

* Import release notes

* retire binary_release.md
This commit is contained in:
Andrew Chen
2018-01-18 12:04:15 -08:00
committed by GitHub
parent 644ae7e248
commit 80076086c2
6 changed files with 1871 additions and 62 deletions
+24
View File
@@ -0,0 +1,24 @@
---
approvers:
- david-mcmahon
- jbeda
title: Building from Source
---
You can either build a release from source or download a pre-built release. If you do not plan on developing Kubernetes itself, we suggest using a pre-built version of the current release, which can be found in the [Release Notes](/docs/imported/release/notes/).
The Kubernetes source code can be downloaded from the [kubernetes/kubernetes repo](https://github.com/kubernetes/kubernetes).
### Building from 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.
Building a release is simple.
```shell
git clone https://github.com/kubernetes/kubernetes.git
cd kubernetes
make release
```
For more details on the release process see the kubernetes/kubernetes [`build`](http://releases.k8s.io/{{page.githubbranch}}/build/) directory.