List of Airflow Images

Images Used by Airflow

gcr.io/mapr-252711/airflow:ecp-5.5.0-rc1
gcr.io/mapr-252711/airflow-operator:ecp-5.5.0-rc1
k8s.gcr.io/git-sync/git-sync:v3.3.4
k8s.gcr.io/volume-nfs:0.8
pbweb/airflow-prometheus-exporter:latest
postgres:9.5
bluedata/hpecp-dtap:1.8.0

Python Script to Load Images into Air-Gap Docker Registry

In the following example, replace localhost:5000 with the address of your air-gap Docker registry.

import os

if __name__ == "__main__":
  images = [
    "gcr.io/mapr-252711/airflow:ecp-5.5.0-rc1", 
    "gcr.io/mapr-252711/airflow-operator:ecp-5.5.0-rc1",
    "k8s.gcr.io/git-sync/git-sync:v3.3.4",
    "pbweb/airflow-prometheus-exporter:latest",
    "k8s.gcr.io/volume-nfs:0.8",
    "postgres:9.5",
    "bluedata/hpecp-dtap:1.8.0",
  ]
  for x in images:
    os.system("docker pull " + x)
    os.system("docker image tag " + x + " localhost:5000/" + x)
    os.system("docker push localhost:5000/" + x)