Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 2.49 KB

CONTRIBUTING.md

File metadata and controls

66 lines (42 loc) · 2.49 KB

Contributing Guidelines

Welcome to Kubernetes. We are excited about the prospect of you joining our community! The Kubernetes community abides by the CNCF code of conduct. Here is an excerpt:

As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.

Getting Started

We have full documentation on how to get started contributing here:

Mentorship

  • Mentoring Initiatives - We have a diverse set of mentorship programs available that are always looking for volunteers!

Chart Changes

When contributing chart changes please follow the same process as when contributing other content but also please DON'T modify Chart.yaml in the PR as this would result in a chart release when merged and will mean that your PR will need modifying before it can be accepted. The chart version will be updated as part of the PR to release the chart.

Development

Required tools:

Adding dependencies

The project follows a standard Go project layout, see more about dependency-management.

Running static code validation

make lint

Running tests

make test-unit
make test-version
make test-e2e

Live reload

To start local development just run:

kind create cluster
skaffold dev

To execute e2e tests run:

go test test/e2e_test.go -v -count=1