├── .gitignore ├── README.md ├── dags └── foobar.py └── mysql └── values.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .terraform 2 | *.tfstate 3 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stwind/airflow-on-kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /dags/foobar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stwind/airflow-on-kubernetes/HEAD/dags/foobar.py -------------------------------------------------------------------------------- /mysql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stwind/airflow-on-kubernetes/HEAD/mysql/values.yaml --------------------------------------------------------------------------------