Files
website/content/en/docs/setup/release/building-from-source.md
Rajakavitha1 f797f1b5ac Update building-from-source.md (#12946)
Added the attribute: content_template: templates/concept

Because the content was not appearing in: https://kubernetes.io/docs/setup/release/building-from-source/
2019-03-07 15:34:05 -08:00

1.1 KiB

reviewers, title, content_template, card
reviewers title content_template card
david-mcmahon
jbeda
Building a release templates/concept
name weight title
download 20 Building a release

{{% 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.

The Kubernetes source code can be downloaded from the kubernetes/kubernetes repo. {{% /capture %}}

{{% capture body %}}

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.

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/{{< param "githubbranch" >}}/build/) directory.

{{% /capture %}}