๐ค Contributing to kwatch
Thank you for helping make Kubernetes easier to operate. You do not need to be a Kubernetes expert to contribute. Documentation, bug reports, tests, ideas, and small fixes are all useful.
๐ฑ Choose a way to helpโ
- ๐ Report a bug
- ๐ก Suggest an improvement
- ๐ Improve a guide or example
- ๐งช Add or improve tests
- ๐ป Fix an issue or build a feature
- ๐ฌ Ask questions in Discord
Before starting a large change, open an issue or discuss it in Discord. This helps us agree on the approach and avoids duplicated work.
๐ ๏ธ A normal code contributionโ
- Find an issue or open one describing the problem.
- Fork the repository and create a focused branch.
- Make the smallest change that solves the problem.
- Add or update tests and documentation.
- Run the verification command locally.
- Open a pull request against
mainand explain what changed.
Read Cloning and building for local setup and the GitHub workflow for the Git commands.
โ Before opening a pull requestโ
go build ./...
go vet ./...
go test ./...
golangci-lint run
make verify
Keep changes focused, use clear names, and add comments only when they explain a non-obvious decision. If a change affects configuration, alerts, persistence, or release behavior, update the matching docs too.
๐ Documentation changesโ
Write for the person who is seeing the problem for the first time:
- Start with the goal and the result.
- Show a copy-pasteable example.
- Explain Kubernetes terms the first time you use them.
- Say whether a setting is on by default or opt-in.
- Never include real credentials in examples.
- Keep version pins inside the release-managed README blocks only.
๐ Community rulesโ
Please follow the Code of Conduct. Security issues should be reported privately using the process in SECURITY.md.