If you want to contribute to the source code of CloudNativePG and innovate in the database in Kubernetes space, this is the right place. Welcome!
We have a truly open source soul. That's why we welcome new contributors. Our goal is to enable you to become the next committer of CloudNativePG, by having a good set of docs that guide you through the development process. Having said this, we know that everything can always be improved, so if you think our documentation is not enough, let us know or provide a pull request based on your experience.
Feel free to ask in the "dev" chat if you have questions or are seeking guidance.
CloudNativePG follows trunk-based development,
with the main
branch representing the trunk.
We adopt the "Github Flow" development workflow, with some customizations:
- the Continuous Delivery
branch is called
main
and is protected - Github is configured for linear development (no merge commits)
- development happens in separate branches created from the
main
branch and called "dev/ISSUE_ID" - once completed, developers must submit a pull request
- two reviews by different maintainers are required before a pull request can be merged
We adopt the conventional commit format for commit messages.
The roadmap is defined as a Github Project.
We have an operational Kanban board we use to organize the flow of items.
If you want to test or evaluate the latest development snapshot of CloudNativePG before the next official patch release, you can simply run:
kubectl apply -f \
https://raw.githubusercontent.com/cloudnative-pg/artifacts/main/manifests/operator-manifest.yaml
In order to write even the simplest patch for CloudNativePG you must have setup your workstation to build and locally test the version of the operator you are developing. All you have to do is follow the instructions you find in "Setting up your development environment for CloudNativePG".
Can you manually test your patch for all the supported PostgreSQL versions on all the supported Kubernetes versions? You probably agree this is not feasible (have you ever heard of the inverted pyramid of testing?).
This is the reason why we have invested since day 1 of CloudNativePG in automated testing. Please refer to "Running E2E tests on your environment" for detailed information.
We use the Developer Certificate of Origin (DCO) as an additional safeguard for the CloudNativePG project. This is a well established and widely used mechanism to assure contributors have confirmed their right to license their contribution under the project's license. Please read developer-certificate-of-origin.
If you can certify it, then just add a line to every git commit message:
Signed-off-by: Random J Developer <[email protected]>
or use the command git commit -s -m "commit message comes here"
to sign-off on your commits.
Use your real name (sorry, no pseudonyms or anonymous contributions).
If you set your user.name
and user.email
git configs, you can sign your
commit automatically with git commit -s
.
You can also use git aliases
like git config --global alias.ci 'commit -s'
. Now you can commit with git ci
and the
commit will be signed.