-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dcab7e7
commit 81f16f1
Showing
11 changed files
with
1,595 additions
and
1,832 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,8 +29,7 @@ Container image for running Apache Airflow with a `CeleryExecutor`. | |
| `GOOGLE_DOMAINS` | - | Comma Separated G Suite Domains to allow login | | ||
| `SENTRY_DSN` | - | Sentry Data Source Name (DSN) | | ||
| `SENTRY_ENVIRONMENT` | `develop` | Sentry environment for this project to send errors as | | ||
| `LOGGING_CONFIG_CLASS` | `airflow.config_templates.`</br>`airflow_local_settings.`</br>`DEFAULT_LOGGING_CONFIG` | Logging class Specify the class that will specify the logging configuration This class has to be on the python classpath | | ||
| `HOSTNAME_CALLABLE` | `socket:getfqdn` | Hostname by providing a path to a callable, which will resolve the hostname. The format is `package:function` | | ||
| `HOSTNAME_CALLABLE` | `socket.getfqdn` | Hostname by providing a path to a callable, which will resolve the hostname. The format is `package:function` | | ||
| `REPO` | - | git repository `git-sync.sh` will pull | | ||
| `BRANCH` | - | git repository branch `git-sync.sh` will pull | | ||
| `DIR` | - | local directory where `git-sync.sh` will clone a repository to | | ||
|
@@ -68,7 +67,7 @@ AIRFLOW__CORE__DB_NAME=airflow | |
REDIS_HOST=redis | ||
REDIS_DBNUM=1 | ||
LOAD_EX=n | ||
FERNET_KEY= # the result of $(python -c "from cryptography.fernet import Fernet; FERNET_KEY = Fernet.generate_key().decode(); print(FERNET_KEY)") | ||
FERNET_KEY= # the result of $(openssl rand -base64 32) | ||
[email protected]:your-org/repository-where-dags-live.git | ||
BRANCH=some-branch-with-dags | ||
DIR=/usr/local/airflow/dags | ||
|
Oops, something went wrong.