Skip to content

Commit

Permalink
Final cleanup before issuing release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaCinquini committed Apr 9, 2024
1 parent aab4d92 commit 7d9b3f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion airflow/dags/docker_cwl_pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:

containers:
- name: cwl-docker
image: ghcr.io/unity-sds/unity-sps/sps-docker-cwl:2.0.0-beta.3
image: ghcr.io/unity-sds/unity-sps/sps-docker-cwl:2.0.0
imagePullPolicy: Always
command: ["/usr/share/cwl/docker_cwl_entrypoint.sh"]
securityContext:
Expand Down
10 changes: 5 additions & 5 deletions airflow/dags/sbg_L1_to_L2_e2e_cwl_step_by_step_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def setup(ti=None, **context):
preprocess_task = KubernetesPodOperator(
namespace=POD_NAMESPACE,
name="SBG_Preprocess",
# on_finish_action="delete_succeeded_pod",
on_finish_action="delete_succeeded_pod",
hostnetwork=False,
startup_timeout_seconds=14400,
get_logs=True,
Expand Down Expand Up @@ -223,7 +223,7 @@ def setup(ti=None, **context):
isofit_task = KubernetesPodOperator(
namespace=POD_NAMESPACE,
name="SBG_Isofit",
# on_finish_action="delete_succeeded_pod",
on_finish_action="delete_succeeded_pod",
hostnetwork=False,
startup_timeout_seconds=14400,
get_logs=True,
Expand Down Expand Up @@ -254,7 +254,7 @@ def setup(ti=None, **context):
resample_task = KubernetesPodOperator(
namespace=POD_NAMESPACE,
name="SBG_Resample",
# on_finish_action="delete_succeeded_pod",
on_finish_action="delete_succeeded_pod",
hostnetwork=False,
startup_timeout_seconds=14400,
get_logs=True,
Expand Down Expand Up @@ -287,7 +287,7 @@ def setup(ti=None, **context):
reflect_correct_task = KubernetesPodOperator(
namespace=POD_NAMESPACE,
name="SBG_Reflect_Correct",
# on_finish_action="delete_succeeded_pod",
on_finish_action="delete_succeeded_pod",
hostnetwork=False,
startup_timeout_seconds=14400,
get_logs=True,
Expand Down Expand Up @@ -323,7 +323,7 @@ def setup(ti=None, **context):
frcover_task = KubernetesPodOperator(
namespace=POD_NAMESPACE,
name="SBG_Frcover",
# on_finish_action="delete_succeeded_pod",
on_finish_action="delete_succeeded_pod",
hostnetwork=False,
startup_timeout_seconds=14400,
get_logs=True,
Expand Down

0 comments on commit 7d9b3f0

Please sign in to comment.