2.2.5-debian-10-r7 release

This commit is contained in:
Bitnami Bot 2022-04-12 18:18:43 +00:00 committed by Bitnami Containers
parent f00b31548f
commit 28a3df75e2
2 changed files with 4 additions and 4 deletions

View File

@ -38,9 +38,9 @@ airflow_scheduler_env_vars=(
AIRFLOW_REDIS_USE_SSL
REDIS_HOST
REDIS_PORT_NUMBER
REDIS_DATABASE
REDIS_USER
REDIS_PASSWORD
REDIS_DATABASE
)
for env_var in "${airflow_scheduler_env_vars[@]}"; do
file_env_var="${env_var}_FILE"
@ -90,8 +90,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-scheduler/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-scheduler/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-scheduler).
@ -315,9 +315,9 @@ The Apache Airflow Scheduler instance can be customized by specifying environmen
- `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 Apache Airflow Scheduler will use to connect with Redis(TM). No defaults.
- `REDIS_PASSWORD`: Password that Apache Airflow Scheduler 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.