2.2.5-debian-10-r7 release

This commit is contained in:
Bitnami Bot
2022-04-12 18:32:26 +00:00
committed by Bitnami Containers
parent c2dc4340ff
commit c2f6168729
2 changed files with 4 additions and 4 deletions

View File

@@ -38,9 +38,9 @@ airflow_worker_env_vars=(
AIRFLOW_REDIS_USE_SSL
REDIS_HOST
REDIS_PORT_NUMBER
REDIS_DATABASE
REDIS_USER
REDIS_PASSWORD
REDIS_DATABASE
)
for env_var in "${airflow_worker_env_vars[@]}"; do
file_env_var="${env_var}_FILE"
@@ -89,8 +89,8 @@ export AIRFLOW_DATABASE_USE_SSL="${AIRFLOW_DATABASE_USE_SSL:-no}"
export AIRFLOW_REDIS_USE_SSL="${AIRFLOW_REDIS_USE_SSL:-no}"
export REDIS_HOST="${REDIS_HOST:-redis}"
export REDIS_PORT_NUMBER="${REDIS_PORT_NUMBER:-6379}"
export REDIS_DATABASE="${REDIS_DATABASE:-1}"
export REDIS_USER="${REDIS_USER:-}"
export REDIS_PASSWORD="${REDIS_PASSWORD:-}"
export REDIS_DATABASE="${REDIS_DATABASE:-1}"
# Custom environment variables may be defined below

View File

@@ -37,7 +37,7 @@ You can find the default credentials and available configuration options in the
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`2`, `2-debian-10`, `2.2.5`, `2.2.5-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-worker/blob/2.2.5-debian-10-r6/2/debian-10/Dockerfile)
* [`2`, `2-debian-10`, `2.2.5`, `2.2.5-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-worker/blob/2.2.5-debian-10-r7/2/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/airflow GitHub repo](https://github.com/bitnami/bitnami-docker-airflow-worker).
@@ -316,9 +316,9 @@ The Airflow Worker instance can be customized by specifying environment variable
- `AIRFLOW_REDIS_USE_SSL`: Set to yes if Redis(TM) uses SSL. Default: **no**
- `REDIS_HOST`: Hostname for Redis(TM) server. Default: **redis**
- `REDIS_PORT_NUMBER`: Port used by Redis(TM) server. Default: **6379**
- `REDIS_DATABASE`: Database number for Redis(TM) server. Default: **1**
- `REDIS_USER`: User that Airflow Worker will use to connect with Redis(TM). No defaults.
- `REDIS_PASSWORD`: Password that Airflow Worker will use to connect with Redis(TM). No defaults.
- `REDIS_DATABASE`: Database number for Redis(TM) server. Default: **1**
> In addition to the previous environment variables, all the parameters from the configuration file can be overwritten by using environment variables with this format: `AIRFLOW__{SECTION}__{KEY}`. Note the double underscores.