Thanks for helping make the KEDA HTTP Add-on better 😍.
There are many areas we can use contributions - ranging from code, documentation, feature proposals, issue triage, samples, and content creation.
- Getting Started
- Submitting Changes
- Developer Certificate of Origin: Signing your work
- Communication
- Project Governance
If you're new to the project, issues labeled good first issue and help wanted are good starting points.
For small fixes (typos, minor bug fixes), feel free to open a pull request directly. For larger changes or new features, please open an issue or start a discussion first so the approach can be agreed on before you invest significant effort.
- Fork and clone the repository
- Set up your development environment — see docs/developing.md for prerequisites and tooling
- Create a branch for your changes (
git switch -c my-change) - Make your changes and verify them:
make lint # runs linter make lint-fix # runs linter and auto-fixes issues make test # runs unit tests
- Commit using conventional commits with a DCO sign-off (
git commit -s) - Update the changelog for user-facing changes
- Open a pull request — see pull request guidelines
This project uses Conventional Commits:
<type>[scope]: <description>
Types: feat, fix, refactor, docs, test, chore
Scopes (optional): interceptor, operator, scaler
Examples:
feat(interceptor): add support for gRPC routingfix(operator): handle nil pointer in reconcile loopchore: bump Go version to 1.23
All commits must also include a DCO sign-off (-s) — see Developer Certificate of Origin.
For user-facing changes, add an entry to the Unreleased section of CHANGELOG.md using this format:
- **Component**: Description ([#ISSUE](https://github.com/kedacore/http-add-on/issues/ISSUE))
Where component is General, Interceptor, Operator, or Scaler. Run ./hack/validate-changelog.sh to verify the entry.
- Keep pull requests focused — one concern per PR.
- Include tests for new functionality or bug fixes.
- Reference the issue being fixed (e.g.,
Fixes #123). - Ensure
make testpasses before submitting. - Include documentation updates in the same PR for changes that affect behavior, and if appropriate, in the KEDA docs repository.
- For end-to-end tests, see tests/README.md.
The Developer Certificate of Origin (DCO) is a lightweight way for contributors to certify that they wrote or otherwise have the right to submit the code they are contributing to the project. Here is the full text of the DCO, reformatted for readability:
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or
(b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or
(c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.
(d) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved.
Contributors sign-off that they adhere to these requirements by adding a Signed-off-by line to commit messages.
This is my commit message
Signed-off-by: Random J Developer <random@developer.example.org>
Git even has a -s command line option to append this automatically to your commit message:
git commit -s -m 'This is my commit message'Pull requests are automatically checked for valid Signed-off-by lines.
Sign all commits on your branch and force push:
git rebase main --exec 'git commit --amend --no-edit -s'
git push --force- GitHub Discussions — questions, ideas, and general conversation
- GitHub Issues — bug reports and feature requests
- Kubernetes Slack —
#kedachannel (join here)
See the KEDA governance documentation.