Cloud Provider OpenStack Release is done in sync with kubernetes/kubernetes, Minor versions can be released intermittently for critical bug fixes.
Update cloud-provider-openstack to kubernetes/kubernetes latest release. Make Sure all CI check passed.
- Checkout the release branch
$ git fetch upstream
$ git checkout -b release-X.Y upstream/release-X.Y
- Sign tag and push to upstream repo. You will need your GPG pass phrase. Check if you have a key using
gpg --list-secret-keys --keyid-format LONG
$ git tag -s -m "Release for cloud-provider-openstack to support Kubernetes release x" vX.Y.Z
$ git push upstream vX.Y.Z
- Build and push images to dockerhub
GOOS=linux DOCKER_USERNAME=user DOCKER_PASSWORD=my_password REGISTRY=docker.io/k8scloudprovider VERSION=vX.Y.Z make upload-images
-
Update manifests with new release images, create a PR against release branch to update.
-
Create entry in GitHub
https://github.com/kubernetes/cloud-provider-openstack/releases
Click on "Draft a new release", fill out the tag, title and description field and click on "Publish release"
- Sign the tarball with your key and upload vX.Y.Z.tar.gz.asc and vX.Y.Z.zip.asc
gpg --armor --detach-sign vX.Y.Z.tar.gz
gpg --armor --detach-sign vX.Y.Z.zip
6 Make the binaries, sign them and upload them
VERSION=vX.Y.Z make dist
cd _dist
find . -name "*.tar.gz" -exec gpg --armor --detach-sign {} \;
find . -name "*.zip" -exec gpg --armor --detach-sign {} \;