From 7402feba6f2f8ecf0ff04409be63d540198dfaf9 Mon Sep 17 00:00:00 2001 From: Pere Miquel Brull Date: Wed, 2 Apr 2025 11:53:55 +0200 Subject: [PATCH] MINOR - Remove airflow_lineage_operator from final ingestion image (#20551) --- ingestion/Dockerfile.ci | 1 + .../airflow/{dags => test_dags}/airflow_lineage_operator.py | 0 2 files changed, 1 insertion(+) rename ingestion/examples/airflow/{dags => test_dags}/airflow_lineage_operator.py (100%) diff --git a/ingestion/Dockerfile.ci b/ingestion/Dockerfile.ci index 2f7b54a9b96..ce20434d854 100644 --- a/ingestion/Dockerfile.ci +++ b/ingestion/Dockerfile.ci @@ -73,6 +73,7 @@ COPY --chown=airflow:0 ingestion /home/airflow/ingestion COPY --chown=airflow:0 openmetadata-airflow-apis /home/airflow/openmetadata-airflow-apis # Required for Airflow DAGs of Sample Data COPY --chown=airflow:0 ingestion/examples/airflow/dags /opt/airflow/dags +COPY --chown=airflow:0 ingestion/examples/airflow/test_dags /opt/airflow/dags USER airflow ARG AIRFLOW_CONSTRAINTS_LOCATION="https://raw.githubusercontent.com/apache/airflow/constraints-2.10.5/constraints-3.10.txt" diff --git a/ingestion/examples/airflow/dags/airflow_lineage_operator.py b/ingestion/examples/airflow/test_dags/airflow_lineage_operator.py similarity index 100% rename from ingestion/examples/airflow/dags/airflow_lineage_operator.py rename to ingestion/examples/airflow/test_dags/airflow_lineage_operator.py