DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Initial Setup:
Establish a new directory,
docker/docker_official_images, within trunk to keep Docker Official Image assets.Ensure dockerfile is compliant as per Docker Official Images guidelines.
Release Candidate (RC) Preparation:
RM would have generated and pushed Apache Kafka's Release Candidate tarball to apache sftp server hosted in home.apache.org by release.py script.
For all subsequent steps - the above Release Candidate tarball URL will be used.
Docker Image Preparation via GitHub Actions:
Implement an automated GitHub Actions workflow to:
Generate a version-specific folder, following the
major_version.minor_version.patch_version-rcnaming scheme, under thedocker/docker_official_imagesdirectory, for housing static Dockerfile and scripts. For example3.8.0-rc.With each new RC, this folder will be overwritten.
This folder will contain all static files necessary for creating the docker image.
The github actions workflow generates this folder which can be downloaded and verified.
The RM checks if there is already a folder with the same name in trunk. If yes, he deletes this, and put this folder under the
docker/docker_official_imagesdirectory in his fork of the kafka repo, and merges this change into the official kafka repo by raising a PR. For example he replaces any existing folder named3.8.0-rcwith the latest artifact named3.8.0-rc, downloaded from the Github actions workflow. To make this step more automated, we will do the same via a script that takes in the local path of the downloaded artifact as an input.
Review and Integration:
A PR will be raised by RM which will contain the all the RC docker official image assets.
Upon PR approval and merge, RM will cherry-pick the changes into the designated branch.
Docker Build and Release Testing:
Perform Docker build tests to ensure image integrity. The dockerfiles for the same will be used from the specific folder in the
docker/docker_official_imagesdirectory.Start the Voting for RC, which will include the Docker image, docker sanity tests report and docker official image source folder.
In case any docker image specific issue is detected, that will be evaluated by the community, if it’s a release blocker or not.
Once the vote passes, run the Docker release pipeline to publish RC images to the Docker Hub open-source software (OSS) sponsored images. The image will be pushed to OSS sponsored
apache/kafkawith the version as tag. For example:apache/kafka:3.8.0-rc1. Cop
Final Release Promotion:
Upon final release approval, run the Docker promote pipeline from the RC branch to the OSS Docker Hub. The latest
major_version.minor_version.patch_versionimage will now be available on the OSS Docker Hub. For example:apache/kafka:3.8.0.
Post-Release Maintenance:
Return to the trunk to perform maintenance tasks:
Remove unsupported version folders from the
docker_official_imagesdirectory to maintain repository cleanliness.Remove the -rc identifier from the
major_version.minor_version.patch_version-rcfolder. This serves as the new source of truth for the DOI. Ensure that the folder of the version being released does not have the -rc tag at the end. For example rename3.8.0-rcto3.8.0.Cherry pick the updated folder name commit to release branch.
Docker Hub Submission:
Run a script from trunk to automate the creation of a file which contains all the necessary information for submission to the Docker Hub official images library.
The RM manually raises the final PR to Docker Hub’s official images repository using the contents of the generated file. Following PR approval, it is now Docker’s responsibility to build and publish the Docker Official Images. For example
kafka:3.8.0.
Post Release Process - if Dockerhub folks suggest changes to the Dockerfiles:
Make the same changes in the Dockerfile present in
docker/jvm/Dockerfile, so that the changes are propagated to newer rc branches and new releases as well. This ensures that the source of truth is kept updated. Commit these changes.Cherry pick these changes into the branch of that particular release.
Follow steps 3 and 4, and then run the docker_build_and_test workflow to test the images with the latest changes.
If the image builds successfully, and passes all tests , switch to the trunk, and follow step 8 again to raise a new PR in the docker official images repo.
...