[bitnami/airflow-worker] Release 2.8.4-debian-12-r0 (#64128)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2024-03-26 02:36:33 +01:00 committed by GitHub
parent ae2d1ef34d
commit d186f03321
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 32 additions and 28 deletions

View File

@ -7,13 +7,13 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2024-03-12T16:57:30Z" \
org.opencontainers.image.created="2024-03-26T00:01:21Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="2.8.3-debian-12-r0" \
org.opencontainers.image.ref.name="2.8.4-debian-12-r0" \
org.opencontainers.image.title="airflow-worker" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="2.8.3"
org.opencontainers.image.version="2.8.4"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@ -27,10 +27,10 @@ RUN install_packages ca-certificates curl git krb5-user libbsd0 libbz2-1.0 libco
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
COMPONENTS=( \
"wait-for-port-1.0.7-10-linux-${OS_ARCH}-debian-12" \
"python-3.11.8-3-linux-${OS_ARCH}-debian-12" \
"python-3.11.8-4-linux-${OS_ARCH}-debian-12" \
"postgresql-client-16.2.0-2-linux-${OS_ARCH}-debian-12" \
"ini-file-1.4.6-10-linux-${OS_ARCH}-debian-12" \
"airflow-worker-2.8.3-0-linux-${OS_ARCH}-debian-12" \
"airflow-worker-2.8.4-0-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@ -56,7 +56,7 @@ COPY rootfs /
RUN /opt/bitnami/scripts/airflow-worker/postunpack.sh
RUN /opt/bitnami/scripts/locales/add-extra-locales.sh
ENV AIRFLOW_HOME="/opt/bitnami/airflow" \
APP_VERSION="2.8.3" \
APP_VERSION="2.8.4" \
BITNAMI_APP_NAME="airflow-worker" \
C_FORCE_ROOT="True" \
LANG="en_US.UTF-8" \

View File

@ -3,7 +3,7 @@
"arch": "amd64",
"distro": "debian-12",
"type": "NAMI",
"version": "2.8.3-0"
"version": "2.8.4-0"
},
"ini-file": {
"arch": "amd64",
@ -21,7 +21,7 @@
"arch": "amd64",
"distro": "debian-12",
"type": "NAMI",
"version": "3.11.8-3"
"version": "3.11.8-4"
},
"wait-for-port": {
"arch": "amd64",

View File

@ -1,5 +1,5 @@
rolling-tags:
- "2"
- 2-debian-12
- 2.8.3
- 2.8.4
- latest

View File

@ -288,25 +288,29 @@ This container supports the installation of additional python modules at start-u
#### Customizable environment variables
| Name | Description | Default Value |
|-------------------------------------|-------------------------------------------------------------------|----------------------|
| `AIRFLOW_EXECUTOR` | Airflow executor. | `SequentialExecutor` |
| `AIRFLOW_EXECUTOR` | Airflow executor. | `CeleryExecutor` |
| `AIRFLOW_FORCE_OVERWRITE_CONF_FILE` | Force the airflow.cfg config file generation. | `no` |
| `AIRFLOW_WEBSERVER_HOST` | Airflow webserver host | `127.0.0.1` |
| `AIRFLOW_WEBSERVER_PORT_NUMBER` | Airflow webserver port. | `8080` |
| `AIRFLOW_HOSTNAME_CALLABLE` | Method to obtain the hostname. | `socket.gethostname` |
| `AIRFLOW_DATABASE_HOST` | Hostname for PostgreSQL server. | `postgresql` |
| `AIRFLOW_DATABASE_HOST` | Hostname for PostgreSQL server. | `127.0.0.1` |
| `AIRFLOW_DATABASE_PORT_NUMBER` | Port used by PostgreSQL server. | `5432` |
| `AIRFLOW_DATABASE_NAME` | Database name that Airflow will use to connect with the database. | `bitnami_airflow` |
| `AIRFLOW_DATABASE_USERNAME` | Database user that Airflow will use to connect with the database. | `bn_airflow` |
| `AIRFLOW_DATABASE_USE_SSL` | Set to yes if the database is using SSL. | `no` |
| `AIRFLOW_REDIS_USE_SSL` | Set to yes if Redis(R) uses SSL. | `no` |
| `REDIS_HOST` | Hostname for Redis(R) server. | `redis` |
| `REDIS_HOST` | Hostname for Redis(R) server. | `127.0.0.1` |
| `REDIS_PORT_NUMBER` | Port used by Redis(R) server. | `6379` |
| `REDIS_DATABASE` | Name of the Redis(R) database. | `1` |
| Name | Description | Default Value |
|-------------------------------------|-----------------------------------------------------------------------|----------------------|
| `AIRFLOW_EXECUTOR` | Airflow executor. | `SequentialExecutor` |
| `AIRFLOW_RAW_FERNET_KEY` | Airflow raw/unencoded Fernet key | `nil` |
| `AIRFLOW_FERNET_KEY` | Airflow Fernet key | `nil` |
| `AIRFLOW_SECRET_KEY` | Airflow Secret key | `nil` |
| `AIRFLOW_FORCE_OVERWRITE_CONF_FILE` | Force the airflow.cfg config file generation. | `no` |
| `AIRFLOW_WEBSERVER_HOST` | Airflow webserver host | `127.0.0.1` |
| `AIRFLOW_WEBSERVER_PORT_NUMBER` | Airflow webserver port. | `8080` |
| `AIRFLOW_HOSTNAME_CALLABLE` | Method to obtain the hostname. | `nil` |
| `AIRFLOW_QUEUE` | A queue for the worker to pull tasks from. | `nil` |
| `AIRFLOW_DATABASE_HOST` | Hostname for PostgreSQL server. | `postgresql` |
| `AIRFLOW_DATABASE_PORT_NUMBER` | Port used by PostgreSQL server. | `5432` |
| `AIRFLOW_DATABASE_NAME` | Database name that Airflow will use to connect with the database. | `bitnami_airflow` |
| `AIRFLOW_DATABASE_USERNAME` | Database user that Airflow will use to connect with the database. | `bn_airflow` |
| `AIRFLOW_DATABASE_PASSWORD` | Database password that Airflow will use to connect with the database. | `nil` |
| `AIRFLOW_DATABASE_USE_SSL` | Set to yes if the database is using SSL. | `no` |
| `AIRFLOW_REDIS_USE_SSL` | Set to yes if Redis(R) uses SSL. | `no` |
| `REDIS_HOST` | Hostname for Redis(R) server. | `redis` |
| `REDIS_PORT_NUMBER` | Port used by Redis(R) server. | `6379` |
| `REDIS_USER` | User that Airflow will use to connect with Redis(R). | `nil` |
| `REDIS_PASSWORD` | Password that Airflow will use to connect with Redis(R). | `nil` |
| `REDIS_DATABASE` | Name of the Redis(R) database. | `1` |
#### Read-only environment variables