├── .gitignore ├── AirflowTemplate.yml ├── README.md └── sample_dags ├── Branched_S3.py ├── collect_hourly_data_from_api.py └── email_on_failure.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSCfi/airflow-openshift/HEAD/.gitignore -------------------------------------------------------------------------------- /AirflowTemplate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSCfi/airflow-openshift/HEAD/AirflowTemplate.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSCfi/airflow-openshift/HEAD/README.md -------------------------------------------------------------------------------- /sample_dags/Branched_S3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSCfi/airflow-openshift/HEAD/sample_dags/Branched_S3.py -------------------------------------------------------------------------------- /sample_dags/collect_hourly_data_from_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSCfi/airflow-openshift/HEAD/sample_dags/collect_hourly_data_from_api.py -------------------------------------------------------------------------------- /sample_dags/email_on_failure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSCfi/airflow-openshift/HEAD/sample_dags/email_on_failure.py --------------------------------------------------------------------------------