https://github.com/eeddaann/airflow-monolith
deploy airflow inside a single container
https://github.com/eeddaann/airflow-monolith
airflow airflow-cluster deployment
Last synced: over 1 year ago
JSON representation
deploy airflow inside a single container
- Host: GitHub
- URL: https://github.com/eeddaann/airflow-monolith
- Owner: eeddaann
- Created: 2021-08-15T09:45:40.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-13T18:03:07.000Z (almost 5 years ago)
- Last Synced: 2025-01-29T05:28:27.837Z (over 1 year ago)
- Topics: airflow, airflow-cluster, deployment
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# airflow-monolith
## Run airflow inside a single container
Since the default deployment of airflow involves multiple containers and we have limited quota of pods we wanted to run airflow in a single container for testing purposes.
**Don't use it at production...**
### usage
- building the image:
```bash
docker build . -t monoairflow
```
- running a container:
```bash
docker run -p 8080:8080 monoairflow
```
### remarks
- In case of ```permission denied``` while building the image, check ```run.sh``` permissions
- The docker image contains a script instead of chained commands to allow better handlling of errors. currently we implemented basic test to verify that the proccess is up but it can be extanded...