The descheduler now has an official helm chart. This change documents the process to release a new helm chart artifact.
3.9 KiB
Release Guide
Container Image
Semi-automatic
- Make sure your repo is clean by git's standards
- Create a release branch
git checkout -b release-1.18(not required for patch releases) - Push the release branch to the descheuler repo and ensure branch protection is enabled (not required for patch releases)
- Tag the repository and push the tag
VERSION=v0.18.0 git tag -m $VERSION $VERSION; git push origin $VERSION - Publish a draft release using the tag you just created
- Perform the image promotion process
- Publish release
- Email
kubernetes-sig-scheduling@googlegroups.comto announce the release
Manual
- Make sure your repo is clean by git's standards
- Create a release branch
git checkout -b release-1.18(not required for patch releases) - Push the release branch to the descheuler repo and ensure branch protection is enabled (not required for patch releases)
- Tag the repository and push the tag
VERSION=v0.18.0 git tag -m $VERSION $VERSION; git push origin $VERSION - Checkout the tag you just created and make sure your repo is clean by git's standards
git checkout $VERSION - Build and push the container image to the staging registry
VERSION=$VERSION make push - Publish a draft release using the tag you just created
- Perform the image promotion process
- Publish release
- Email
kubernetes-sig-scheduling@googlegroups.comto announce the release
Notes
See post-descheduler-push-images dashboard for staging registry image build job status.
View the descheduler staging registry using this URL in a web browser
or use the below gcloud commands.
List images in staging registry.
gcloud container images list --repository gcr.io/k8s-staging-descheduler
List descheduler image tags in the staging registry.
gcloud container images list-tags gcr.io/k8s-staging-descheduler/descheduler
Get SHA256 hash for a specific image in the staging registry.
gcloud container images describe gcr.io/k8s-staging-descheduler/descheduler:v20200206-0.9.0-94-ge2a23f284
Pull image from the staging registry.
docker pull gcr.io/k8s-staging-descheduler/descheduler:v20200206-0.9.0-94-ge2a23f284
Helm Chart
Helm chart releases are managed by a separate set of git tags that are prefixed with chart-*. Example git tag name is chart-0.18.0. Released versions of the
helm charts are stored in the gh-pages branch of this repo. The chart-releaser-action GitHub Action is setup to
build and push the helm charts to the gh-pages branch when a chart-* git tag is created.
The major and minor version of the chart matches the descheduler major and minor versions. For example descheduler helm chart version chart-0.18.0 corresponds to descheduler version v0.18.0. The patch version of the descheduler helm chart and the patcher version of the descheduler will not necessarily match. The patch version of the descheduler helm chart is used to version changes specific to the helm chart.
- Merge all helm chart changes into the appropriate release branch(i.e. release-1.18)
- Ensure that
appVersionin filecharts/descheduler/Chart.yamlmatches the descheduler version(novprefix) - Ensure that
versionin filecharts/descheduler/Chart.yamlhas been incremented. This is the chart version.
- Ensure that
- Make sure your repo is clean by git's standards
- Create the tag and push it
git checkout release-1.18; CHART_VERSION=chart-0.18.0; git tag $CHART_VERSION; git push origin $CHART_VERSION - Verify the new helm artifact has been successfully pushed to the
gh-pagesbranch