Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add verification step to image release process #24177

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions dev/README_RELEASE_AIRFLOW.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
- [Publish release to SVN](#publish-release-to-svn)
- [Prepare PyPI "release" packages](#prepare-pypi-release-packages)
- [Manually prepare production Docker Image](#manually-prepare-production-docker-image)
- [Verify production images](#verify-production-images)
- [Publish documentation](#publish-documentation)
- [Notify developers of release](#notify-developers-of-release)
- [Add release data to Apache Committee Report Helper](#add-release-data-to-apache-committee-report-helper)
Expand Down Expand Up @@ -1041,6 +1042,16 @@ Preparing a release that is not in the latest branch:
breeze release-prod-images --airflow-version "${VERSION}" --slim-images --skip-latest
```

## Verify production images

```shell script
for PYTHON in 3.7 3.8 3.9 3.10
do
docker pull apache/airflow:${VERSION}-python${PYTHON}
breeze verify-prod-image --image-name apache/airflow:${VERSION}-python${PYTHON}
done
potiuk marked this conversation as resolved.
Show resolved Hide resolved
```


## Publish documentation

Expand Down