Skip to content

Latest commit

 

History

History
306 lines (213 loc) · 8.44 KB

development.md

File metadata and controls

306 lines (213 loc) · 8.44 KB

Development Guide

This document is the canonical source of truth for things like supported toolchain versions for building Kubernetes.

Please submit an issue on github if you

  • find a requirement that this doc does not capture,
  • find other docs with references to requirements that are not simply links to this doc.

This document is intended to be relative to the branch in which it is found.

Development branch requirements will change over time, but release branch requirements are frozen.

Building Kubernetes with Docker

Official releases are built using Docker containers. To build Kubernetes using Docker please follow [these instructions] (http://releases.k8s.io/HEAD/build/README.md).

Building Kubernetes on a local OS/shell environment

Kubernetes development helper scripts assume an up-to-date GNU tools environment. Most recent Linux distros should work out-of-the-box.

Mac OS X ships with outdated BSD-based tools. We recommend installing Os X GNU tools.

etcd

Kubernetes maintains state in etcd, a distributed key store.

Please install it locally to run local integration tests.

Go

Kubernetes is written in Go. If you don't have a Go development environment, please set one up.

Kubernetes requires Go
1.0 - 1.2 1.4.2
1.3, 1.4 1.6
1.5 and higher 1.7 - 1.7.5
1.8 not verified as of Feb 2017

After installation, you'll need GOPATH defined, and PATH modified to access your Go binaries.

A common setup is

export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin

Upgrading Go

Upgrading Go requires specific modification of some scripts and container images.

Dependency management

Kubernetes build/test scripts use godep to manage dependencies.

go get -u github.com/tools/godep

Check your version; v63 or higher is known to work for Kubernetes.

godep version

Developers planning to manage dependencies in the vendor/ tree may want to explore alternative environment setups. See using godep to manage dependencies.

Workflow

Git workflow

1 Fork in the cloud

  1. Visit https://github.com/kubernetes/kubernetes
  2. Click Fork button (top right) to establish a cloud-based fork.

2 Clone fork to local storage

Per Go's workspace instructions, place Kubernetes' code on your GOPATH using the following cloning procedure.

Define a local working directory:

# If your GOPATH has multiple paths, pick
# just one and use it instead of $GOPATH here
working_dir=$GOPATH/src/k8s.io

If you already do Go development on github, the k8s.io directory will be a sibling to your existing github.com directory.

Set user to match your github profile name:

user={your github profile name}

Both $working_dir and $user are mentioned in the figure above.

Create your clone:

mkdir -p $working_dir
cd $working_dir
git clone https://github.com/$user/kubernetes.git
# or: git clone [email protected]:$user/kubernetes.git

cd $working_dir/kubernetes
git remote add upstream https://github.com/kubernetes/kubernetes.git
# or: git remote add upstream [email protected]:kubernetes/kubernetes.git

# Never push to upstream master
git remote set-url --push upstream no_push

# Confirm that your remotes make sense:
git remote -v

Define a pre-commit hook

Please link the Kubernetes pre-commit hook into your .git directory.

This hook checks your commits for formatting, building, doc generation, etc. It requires both godep and etcd on your PATH.

cd $working_dir/kubernetes/.git/hooks
ln -s ../../hooks/pre-commit .

3 Branch

Get your local master up to date:

cd $working_dir/kubernetes
git fetch upstream
git checkout master
git rebase upstream/master

Branch from it:

git checkout -b myfeature

Then edit code on the myfeature branch.

Build

cd $working_dir/kubernetes
make

To build with optimizations disabled for enabling use of source debug tools:

make GOGCFLAGS="-N -l"

To build binaries for all platforms:

make cross

Test

cd $working_dir/kubernetes

# Run every unit test
make test 

# Run package tests verbosely
make test WHAT=pkg/util/cache GOFLAGS=-v

# Run integration tests, requires etcd
make test-integration

# Run e2e tests
make test-e2e

See the testing guide and end-to-end tests for additional information and scenarios.

4 Keep your branch in sync

# While on your myfeature branch
git fetch upstream
git rebase upstream/master

5 Commit

Commit your changes.

git commit

Likely you go back and edit/build/test some more then commit --amend in a few cycles.

6 Push

When ready to review (or just to establish an offsite backup or your work), push your branch to your fork on github.com:

git push -f origin myfeature

7 Create a pull request

  1. Visit your fork at https://github.com/$user/kubernetes (replace $user obviously).
  2. Click the Compare & pull request button next to your myfeature branch.
  3. Check out the pull request process for more details.

If you have upstream write access, please refrain from using the GitHub UI for creating PRs, because GitHub will create the PR branch inside the main repository rather than inside your fork.

Get a code review

Once your pull request has been opened it will be assigned to one or more reviewers. Those reviewers will do a thorough code review, looking for correctness, bugs, opportunities for improvement, documentation and comments, and style.

Commit changes made in response to review comments to the same branch on your fork.

Very small PRs are easy to review. Very large PRs are very difficult to review.

At the assigned reviewer's discretion, a PR may be switched to use Reviewable instead. Once a PR is switched to Reviewable, please ONLY send or reply to comments through reviewable. Mixing code review tools can be very confusing.

See Faster Reviews for some thoughts on how to streamline the review process.

Squash and Merge

Upon merge (by either you or your reviewer), all commits left on the review branch should represent meaningful milestones or units of work. Use commits to add clarity to the development and review process.

Before merging a PR, squash any fix review feedback, typo, and rebased sorts of commits.

It is not imperative that every commit in a PR compile and pass tests independently, but it is worth striving for.

For mass automated fixups (e.g. automated doc formatting), use one or more commits for the changes to tooling and a final commit to apply the fixup en masse. This makes reviews easier.

Analytics