You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/06/04 21:09:34 UTC

[airflow] branch main updated: Add verification step to image release process (#24177)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 5d5598eca6 Add verification step to image release process (#24177)
5d5598eca6 is described below

commit 5d5598eca6ae4513e2decd851d32db992b6a02ec
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Sat Jun 4 23:09:27 2022 +0200

    Add verification step to image release process (#24177)
---
 dev/README_RELEASE_AIRFLOW.md | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/dev/README_RELEASE_AIRFLOW.md b/dev/README_RELEASE_AIRFLOW.md
index 6dce6e487c..7e6c16289e 100644
--- a/dev/README_RELEASE_AIRFLOW.md
+++ b/dev/README_RELEASE_AIRFLOW.md
@@ -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)
@@ -1041,6 +1042,18 @@ 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
+docker pull apache/airflow:${VERSION}
+breeze verify-prod-image --image-name apache/airflow:${VERSION}
+```
+
 
 ## Publish documentation