Files
kind/site/content/docs/contributing/getting-started.md
2020-12-02 19:57:19 -08:00

5.3 KiB

title, menu, toc, description
title menu toc description
Getting Started
main
parent identifier weight
contributing getting started 1
true Welcome! This guide covers how to get started contributing to kind.

1. Familiarize Yourself With Contributing to Kubernetes Projects

Read the Kubernetes Community Guidelines

Make sure to read you read the Kubernetes community guidelines. In specific, read through the Kubernetes contributor guidelines.

Additionally, note that

Setup GitHub Account

Kubernetes and kind are developed on GitHub and will require an account to contribute.

Sign CNCF CLA

The Kubernetes project requires the [CNCF][CNCF] CLA be signed against your GitHub account for all contributions in all subprojects.

You'll need to get the CLA signed to contribute.

Check The Kubernetes Contributor Guides

You may come back to this later, but we highly recommend reading these:

2. Install Tools

Install Git

Our source code is managed with git, to develop locally you will need to install git.

You can check if git is already on your system and properly installed with the following command:

git --version

Install Docker

Currently, to create clusters you will need to install Docker.

If you haven't already, install Docker, following the official instructions. If you have an existing installation, check your version and make sure you have the latest Docker.

To check if docker has been installed:

docker --version

This documentation is written using Docker version 18.09.2.

Install Go (optional)

KIND is written in Go, however our makefiles automatically ensure the correct version of go when building or testing.

You may still wish to install go on your machine to make it easier to integrate into your editor etc. You can find the version of go we're currently using to develop kind in the .go-version file in the kind repo.

Install or upgrade Go using the instructions for your operating system. You can check if Go is in your system with the following command:

3. Read The Docs

The design principles, 1.0 roadmap, project structure, and initial design may be helpful to review before contributing. These docs cover some of the project philosphy and direction.

4. Reaching Out

Issues are tracked on GitHub. Please check the issue tracker to see if there is any existing discussion or work related to your interests.

If you do not see anything, please file a new issue.

Note

: Please file an enhancement / feature request issue to discuss features before filing a PR (ideally even before writing any code), we have a lot to consider with respect to our existing users and future support when accepting any new feature. To streamline the process, please reach out and discuss the concept and design / approach ASAP so the maintainers and community can get involved early.

Please reach out for bugs, feature requests, and other issues!
The maintainers of this project are reachable via:

Current maintainers are @BenTheElder and @munnerz - feel free to reach out directly if you have any questions!

See also: the Kubernetes community page.