This repo contains two helm charts: cloudnative-pg and cnpg-sandbox. Both the charts are available through a single repository, but should be released separately as their versioning might be unlinked and the latter depend on the former.
In order to release vX.Y.Z
of the cloudnative-pg
chart, follow these steps:
- create a branch named
release/cloudnative-pg-vX.Y.Z
and switch to it - bump the
.version
in the Chart.yaml file tovX.Y.Z
- update everything else as required, e.g. if releasing due to a new
cloudnative-pg version being released, you might want to update the
following:
.appVersion
in the Chart.yaml file- crds.yaml, whose
content can be built using kustomize from the
cloudnative-pg repo using kustomize
remoteBuild
running:
kustomize build https://github.com/cloudnative-pg/cloudnative-pg/tree/release-1.16/config/helm/\?ref=v1.16.0
, take care to set the correct version as ref (v1.15.1 in the example command). Also notice that crd generation should be guarded from.Values.crds.create
, so please pay attention to maintain that. - all the needed files in the
templates directory, you can diff
the previous release yaml w.r.t. the new one to know what should be
updated (e.g.
vimdiff https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/releases/cnpg-1.15.0.yaml https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/releases/cnpg-1.15.1.yaml
) - update values.yaml if needed
- run
make docs schema
to regenerate the docs and the values schema in case it is needed git commit -S -s -m "Release cloudnative-pg-vX.Y.Z" --edit
and add all the informations you wish below the commit message.git push --set-upstream origin release/coudnative-pg-vX.Y.Z
- a PR named
Release cloudnative-pg-vX.Y.Z
will be automatically created - wait for all the checks to pass
- two approvals are required in order to merge the PR, if you are a maintainer approve the PR yourself and ask for another approval, otherwise ask for two approvals directly.
- merge the pr squashing all commits and taking care to keep the commit
message to be
Release cloudnative-pg-vX.Y.Z
- a tag
cloudnative-pg-vX.Y.Z
will be automatically created by an action, which will ten trigger the release action, check they both are successful. - once done you should be able to run helm repo
helm repo add cnpg https://cloudnative-pg.github.io/charts; helm repo update; helm search repo cnpg
and be ableto see the new versionvX.Y.Z
asCHART VERSION
forcloudnative-pg
cnpg-sandbox is an umbrella chart which depends on the cloudnative-pg chart, therefore in case the only change required is bumping cloudnative-pg version, its release should be done only once its dependency has been successfully released.
In order to release vX.Y.Z
of the cnpg-sandbox
chart, follow these steps:
- create a branch
release/cnpg-sandbox-vX.Y.Z
and switch to it - bump the
.version
in the Chart.yaml file tovX.Y.Z
- update everything else as required, e.g. if releasing due to a new cloudnative-pg chart being released:
- bump
.dependecies[0].version
for thecloudnative-pg
chart in the aforementionedChart.yaml
file - update the values.yaml file if needed
- run
helm dependency update charts/cnpg-sandbox
to sync the Chart.lock to the new dependencies - run
make docs schema
to regenerate the docs and the values schema in case it is needed git commit -S -s -m "Release cnpg-sandbox-vX.Y.Z" --edit
and add all the informations you wish below the commit message.git push --set-upstream origin release/cnpg-sandbox-vX.Y.Z
- a PR named
Release cnpg-sandbox-vX.Y.Z
will be automatically created - wait for all the checks to pass
- two approvals are required in order to merge the PR, if you are a maintainer approve the PR yourself and ask for another approval, otherwise ask for two approvals directly.
- merge the pr squashing all commits and taking care to keep the commit
message to be
Release cnpg-sandbox-vX.Y.Z
- a tag
cnpg-sandbox-vX.Y.Z
will be automatically created by an action, which will ten trigger the release action, check they both are successful. - once done you should be able to run helm repo
helm repo add cnpg https://cloudnative-pg.github.io/charts; helm repo update; helm search repo cnpg
and be ableto see the new versionvX.Y.Z
asCHART VERSION
forcnpg-sanbox