This repo contains two helm charts: cloudnative-pg and cluster. Both the charts are available through a single repository, but should be released separately as their versioning might be unlinked, and the latter depends on the former.
IMPORTANT we should run the below procedures against the latest point release of the CloudNativePG operator. I.e. even if we have several release branches in CNPG, we will only target the most advanced point release (e.g. 1.17.1)
In order to create a new release of the cloudnative-pg
chart, follow these steps:
- Take note of the current value of the release: see
.version
incharts/cloudnative-pg/Chart.yaml
yq -r '.version' charts/cloudnative-pg/Chart.yaml
- Decide which version to create, depending on the kind of jump of the CloudNativePG release, following semver
semantics. For this document, let's call it
X.Y.Z
NEW_VERSION="X.Y.Z"
- Create a branch named
release/cloudnative-pg-vX.Y.Z
and switch to it:git switch --create release/cloudnative-pg-v$NEW_VERSION
- Update the
.version
in the Chart.yaml file to"X.Y.Z"
sed -i -E "s/^version: \"([0-9]+.?)+\"/version: \"$NEW_VERSION\"/" charts/cloudnative-pg/Chart.yaml
- 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, which can be built using
kustomize from the
cloudnative-pg
repo using kustomize remoteBuild running:It might be easier to runVERSION=v1.16.0 kustomize build https://github.com/cloudnative-pg/cloudnative-pg/tree/release-1.16/config/helm/\?ref=v1.16.0
kustomize build config/helm
from thecloudnative-pg
repo, with the desired release branch checked out, and copy the result to./charts/cloudnative-pg/templates/crds/crds.yaml
. - NOTE: please keep the guards for
.Values.crds.create
, i.e.{{- if .Values.crds.create }}
and{{- end }}
after you copy the CRD intotemplates/crds/crds.yaml
. - To update the files in the templates directory, you can diff the previous
CNPG release yaml against the new one, to find what should be updated (e.g.
Or from the
OLD_VERSION=1.15.0 NEW_VERSION=1.15.1 vimdiff \ "https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/releases/cnpg-${OLD_VERSION}.yaml" \ "https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/releases/cnpg-${NEW_VERSION}.yaml"
cloudnative-pg
repo, with the desired release branch checked out:vimdiff releases/cnpg-1.15.0.yaml releases/cnpg-1.15.1.yaml
- Update values.yaml if needed
- NOTE: updating
values.yaml
just for the CNPG version may not be necessary, as the value should default to theappVersion
inChart.yaml
- Run
make docs schema
to regenerate the docs and the values schema in case it is neededmake docs schema
- Commit and add the relevant information you wish in the commit message.
git add . git commit -S -s -m "Release cloudnative-pg-v$NEW_VERSION" --edit
- Push the new branch
git push --set-upstream origin release/cloudnative-pg-v$NEW_VERSION
- A PR named
Release cloudnative-pg-vX.Y.Z
should 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 release
cloudnative-pg-vX.Y.Z
should be automatically created by an action, which will then trigger the release action. Verify they both are successful. - Once done you should be able to run:
and be able to see the new version
helm repo add cnpg https://cloudnative-pg.github.io/charts helm repo update helm search repo cnpg
X.Y.Z
asCHART VERSION
forcloudnative-pg
In order to create a new release of the cluster
chart, follow these steps:
- Take note of the current value of the release: see
.version
incharts/cluster/Chart.yaml
yq -r '.version' charts/cluster/Chart.yaml
- Decide which version to create, depending on the kind of changes and backwards compatibility, following semver
semantics. For this document, let's call it
X.Y.Z
NEW_VERSION="X.Y.Z"
- Create a branch: named
release/cluster-vX.Y.Z
and switch to itgit switch --create release/cluster-v$NEW_VERSION
- Update the
.version
in the Chart.yaml file to"X.Y.Z"
sed -i -E "s/^version: ([0-9]+.?)+/version: $NEW_VERSION/" charts/cluster/Chart.yaml
- Run
make docs schema
to regenerate the docs and the values schema in case it is neededmake docs schema
- Commit and add the relevant information you wish in the commit message.
git add . git commit -S -s -m "Release cluster-v$NEW_VERSION" --edit
- Push the new branch
git push --set-upstream origin release/cluster-v$NEW_VERSION
- A PR should 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 cluster-vX.Y.Z
- A release
cluster-vX.Y.Z
should be automatically created by an action, which will ten trigger the release action. Verify they both are successful. - Once done you should be able to run:
and be able to see the new version
helm repo add cnpg https://cloudnative-pg.github.io/charts helm repo update helm search repo cnpg
X.Y.Z
asCHART VERSION
forcluster