Skip to content

Commit

Permalink
Update dags_airflow_fede_k8sexecutor.py
Browse files Browse the repository at this point in the history
  • Loading branch information
leggerf authored Jan 29, 2024
1 parent 73eba90 commit b2a829d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions dags_airflow_fede_k8sexecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
@task(
executor_config=executor_config_annotation,
queue=default_queue,
task_id="task_k8s_annotation",
task_id="task_annotation",
)
def test_annotation():
print_stuff()
Expand Down Expand Up @@ -98,7 +98,7 @@ def test_annotation():
@task(
executor_config=executor_config_volume_mount,
queue=default_queue,
task_id="task_k8s_volume_mount",
task_id="task_volume_mount",
)
def test_volume_mount():
"""
Expand Down Expand Up @@ -168,7 +168,7 @@ def test_volume_mount():
@task(
executor_config=executor_config_sidecar,
queue=default_queue,
task_id="task_k8s_sidecar",
task_id="task_sidecar",
)
def test_sharedvolume_mount():
"""
Expand Down Expand Up @@ -202,7 +202,7 @@ def test_sharedvolume_mount():
@task(
executor_config=executor_config_label,
queue=default_queue,
task_id="task_k8s_label",
task_id="task_label",
)
def test_label():
print_stuff()
Expand All @@ -226,7 +226,7 @@ def test_label():
@task(
executor_config=executor_config_other_ns,
queue=default_queue,
task_id="task_k8s_other_ns",
task_id="task_other_ns",
)
def other_namespace_task():
print_stuff()
Expand Down Expand Up @@ -260,7 +260,7 @@ def other_namespace_task():
@task(
executor_config=kube_exec_config_image,
queue=default_queue,
task_id="task_k8s_image",
task_id="task_image",
)
def image_override_task():
print_stuff()
Expand Down Expand Up @@ -320,7 +320,7 @@ def image_override_task():
@task(
executor_config=kube_exec_config_resource_limits,
queue=default_queue,
task_id="task_k8s_resource_limits",
task_id="task_resource_limits",
)
def task_with_resource_limits():
print_stuff()
Expand Down

0 comments on commit b2a829d

Please sign in to comment.