Kubernetes projects require that you sign a Contributor License Agreement (CLA) before we can accept your pull requests. Please see git.k8s.io/commonuity/CLA.md for more info.
- Submit an issue describing your proposed change to the repo in question.
- The repo owners will respond to your issue promptly.
- If your proposed change is accepted, and you haven't already done so, sign a Contributor License Agreement (see details above).
- Fork the desired repo, develop and test your code changes.
- Submit a pull request.
You can run the linters against the code with
make check
This will check go, yaml, and markdown for linting errors if you have the required applications installed:
- go: The go linter, golangci-lint, will install itself. Follow the link for its documentation.
- yaml: The yaml linter, yamllint is packaged for most distros. Installation instructions and documentation can be found at yamllint.readthedocs.io.
- markdown: The markdown linter, markdownlint-cli needs node.js and npm installed to install it. See the link for installation instructions and documentation.