-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add airflow deployment from github actions (#973)
- Loading branch information
1 parent
25a7f73
commit d90d030
Showing
12 changed files
with
288 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: "[Airflow] [🟠 Preprod] Déploiement continu" | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: ["dags*", "airflow*"] | ||
branches: | ||
- main | ||
|
||
env: | ||
CLEVER_TOKEN: ${{ secrets.CLEVER_TOKEN }} | ||
CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }} | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
run_airflow_tests: | ||
uses: ./.github/workflows/airflow_tests.yml | ||
|
||
deploy_dags: | ||
needs: [run_airflow_tests] | ||
uses: ./.github/workflows/airflow_deploy_dags.yml | ||
with: | ||
S3_BUCKET_DESTINATION: s3://preprod-data-dags/ | ||
secrets: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AIRFLOW_PREPROD_S3_ACCESS_KEY }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AIRFLOW_PREPROD_S3_SECRET_KEY }} | ||
|
||
deploy_airflow: | ||
needs: [deploy_dags] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: 47ng/[email protected] | ||
with: | ||
appID: ${{ secrets.AIRFLOW_WEBSERVER_PREPROD_APP_ID }} | ||
- uses: 47ng/[email protected] | ||
with: | ||
appID: ${{ secrets.AIRFLOW_SCHEDULER_PREPROD_APP_ID }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: "[Airflow] [🔴 Prod] Déploiement continu" | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: ["dags*", "airflow*"] | ||
tags: | ||
- v* | ||
|
||
env: | ||
CLEVER_TOKEN: ${{ secrets.CLEVER_TOKEN }} | ||
CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }} | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
run_airflow_tests: | ||
uses: ./.github/workflows/airflow_tests.yml | ||
|
||
deploy_dags: | ||
needs: [run_airflow_tests] | ||
uses: ./.github/workflows/airflow_deploy_dags.yml | ||
with: | ||
S3_BUCKET_DESTINATION: s3://prod-dags/ | ||
secrets: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AIRFLOW_PROD_S3_ACCESS_KEY }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AIRFLOW_PROD_S3_SECRET_KEY }} | ||
|
||
deploy_airflow: | ||
needs: [run_airflow_tests] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: 47ng/[email protected] | ||
with: | ||
appID: ${{ secrets.AIRFLOW_WEBSERVER_PROD_APP_ID }} | ||
- uses: 47ng/[email protected] | ||
with: | ||
appID: ${{ secrets.AIRFLOW_SCHEDULER_PROD_APP_ID }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: "_[Airflow] Déploiement des DAGs" | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
S3_BUCKET_DESTINATION: | ||
required: true | ||
type: string | ||
secrets: | ||
AWS_ACCESS_KEY_ID: | ||
required: true | ||
AWS_SECRET_ACCESS_KEY: | ||
required: true | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
S3_HOST: https://cellar-c2.services.clever-cloud.com | ||
FOLDER_SOURCE: dags | ||
|
||
jobs: | ||
deploy_dags: | ||
name: "Déploiement des DAGs dans Clever Cloud" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Install AWS CLI dependencies | ||
run: | | ||
pip install awscli | ||
- name: Push to S3 bucket production | ||
run: aws --endpoint-url ${{ env.S3_HOST }} s3 sync --delete --quiet ${{ env.FOLDER_SOURCE }} ${{ inputs.S3_BUCKET_DESTINATION }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
name: "_[Airflow] Tests" | ||
|
||
on: | ||
workflow_call: | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
unit_tests: | ||
name: "Tests unitaires des DAGs" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
cache: "pip" | ||
python-version: "3.12.1" | ||
- name: Install Dependencies | ||
run: pip install --require-hashes --no-deps -r airflow-requirements.txt -r dev-requirements.txt | ||
# TODO: voir pourquoi on ne peut pas lancer les tests ici | ||
# 1. On avait d'abord une erreur pydantic | ||
# J'ai donc instalé la dépendance | ||
# ERROR: while parsing the following warning configuration: | ||
|
||
# ignore::pydantic.warnings.PydanticDeprecatedSince20 | ||
|
||
# This error occurred: | ||
|
||
# Traceback (most recent call last): | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1917, in parse_warning_filter | ||
# category: type[Warning] = _resolve_warning_category(category_) | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1955, in _resolve_warning_category | ||
# m = __import__(module, None, None, [klass]) | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# ModuleNotFoundError: No module named 'pydantic' | ||
# | ||
# | ||
# | ||
# Puis j'ai eu de nouvelles erreurs car pytests lit le pyproject.toml | ||
# Traceback (most recent call last): | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/bin/pytest", line 8, in <module> | ||
# sys.exit(console_main()) | ||
# ^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/config/__init__.py", line 201, in console_main | ||
# code = main() | ||
# ^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/config/__init__.py", line 156, in main | ||
# config = _prepareconfig(args, plugins) | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/config/__init__.py", line 341, in _prepareconfig | ||
# config = pluginmanager.hook.pytest_cmdline_parse( | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_hooks.py", line 513, in __call__ | ||
# return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_manager.py", line 120, in _hookexec | ||
# return self._inner_hookexec(hook_name, methods, kwargs, firstresult) | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_callers.py", line 139, in _multicall | ||
# raise exception.with_traceback(exception.__traceback__) | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_callers.py", line 122, in _multicall | ||
# teardown.throw(exception) # type: ignore[union-attr] | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/helpconfig.py", line 105, in pytest_cmdline_parse | ||
# config = yield | ||
# ^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_callers.py", line 103, in _multicall | ||
# res = hook_impl.function(*args) | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1140, in pytest_cmdline_parse | ||
# self.parse(args) | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1494, in parse | ||
# self._preparse(args, addopts=addopts) | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1398, in _preparse | ||
# self.hook.pytest_load_initial_conftests( | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_hooks.py", line 513, in __call__ | ||
# return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_manager.py", line 120, in _hookexec | ||
# return self._inner_hookexec(hook_name, methods, kwargs, firstresult) | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_callers.py", line 139, in _multicall | ||
# raise exception.with_traceback(exception.__traceback__) | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_callers.py", line 122, in _multicall | ||
# teardown.throw(exception) # type: ignore[union-attr] | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/warnings.py", line 151, in pytest_load_initial_conftests | ||
# return (yield) | ||
# ^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_callers.py", line 122, in _multicall | ||
# teardown.throw(exception) # type: ignore[union-attr] | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/_pytest/capture.py", line 154, in pytest_load_initial_conftests | ||
# yield | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pluggy/_callers.py", line 103, in _multicall | ||
# res = hook_impl.function(*args) | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pytest_django/plugin.py", line 356, in pytest_load_initial_conftests | ||
# with _handle_import_error(_django_project_scan_outcome): | ||
# File "/Users/fabienlefrapper/.local/share/mise/installs/python/3.12.5/lib/python3.12/contextlib.py", line 158, in __exit__ | ||
# self.gen.throw(value) | ||
# File "/Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets/.venv/lib/python3.12/site-packages/pytest_django/plugin.py", line 184, in _handle_import_error | ||
# raise ImportError(msg) from None | ||
# ImportError: No module named 'decouple' | ||
|
||
# pytest-django found a Django project in /Users/fabienlefrapper/Developer/beta.gouv.fr/quefairedemesobjets (it contains manage.py) and added it to the Python path. | ||
# If this is wrong, add "django_find_project = false" to pytest.ini and explicitly manage your Python path. | ||
# - name: Run unit tests | ||
# run: pytest dags_unit_tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: "[LVAO] [🟠 Preprod] Déploiement continu" | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
run_test: | ||
uses: ./.github/workflows/lvao_tests.yml | ||
|
||
deploy: | ||
name: Deploy on Scalingo | ||
needs: [run_test] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: kolok/deploy-to-scalingo@v1 | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
known-host: ssh.osc-fr1.scalingo.com | ||
app-name: quefairedemesobjets-preprod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.