Update building-from-source.md (#12577)

* Update building-from-source.md

Update the page to be consistent with the concepts template.

* Update building-from-source.md

Update the page to be consistent with the concepts template.
pull/12570/head
Vineeth Reddy 2019-02-17 21:12:51 +05:30 committed by Kubernetes Prow Robot
parent 7f3eb1dac6
commit d521f97eab
1 changed files with 7 additions and 2 deletions

View File

@ -2,13 +2,16 @@
reviewers: reviewers:
- david-mcmahon - david-mcmahon
- jbeda - jbeda
title: Building from Source title: Building a release
content_template: templates/concept
--- ---
{{% capture overview %}}
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/setup/release/notes/). 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/setup/release/notes/).
The Kubernetes source code can be downloaded from the [kubernetes/kubernetes](https://github.com/kubernetes/kubernetes) repo. The Kubernetes source code can be downloaded from the [kubernetes/kubernetes](https://github.com/kubernetes/kubernetes) repo.
{{% /capture %}}
{{% capture body %}}
## Building from source ## 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. 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.
@ -22,3 +25,5 @@ make release
``` ```
For more details on the release process see the kubernetes/kubernetes [`build`](http://releases.k8s.io/{{< param "githubbranch" >}}/build/) directory. For more details on the release process see the kubernetes/kubernetes [`build`](http://releases.k8s.io/{{< param "githubbranch" >}}/build/) directory.
{{% /capture %}}