Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airflow/example_dags/example_kubernetes_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""
import os

from libs import print_stuff
from libs.helper import print_stuff

from airflow.models import DAG
from airflow.operators.python import PythonOperator
Expand Down
2 changes: 1 addition & 1 deletion airflow/example_dags/example_kubernetes_executor_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""
import os

from libs import print_stuff
from libs.helper import print_stuff

from airflow.models import DAG
from airflow.operators.python import PythonOperator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ set -x

cd /opt/airflow/airflow && \
cp -R example_dags/* /root/airflow/dags/ && \
find /root/airflow/dags/ && \
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just to show what dags are there for debugging right? 👍

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yel

airflow db init && \
alembic upgrade heads && \
(airflow users create --username airflow --lastname airflow --firstname jon --email airflow@apache.org --role Admin --password airflow || true) && \
Expand Down