Skip to content
This repository was archived by the owner on May 8, 2024. It is now read-only.

Commit 8df4a5d

Browse files
committed
Building devel11
1 parent 75b74a1 commit 8df4a5d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

airflow/dags/docker_cwl_pod.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ spec:
88

99
containers:
1010
- name: cwl-docker
11-
image: ghcr.io/unity-sds/unity-sps-prototype/sps-docker-cwl:devel4
11+
image: ghcr.io/unity-sds/unity-sps-prototype/sps-docker-cwl:devel11
1212
command: ["/usr/share/cwl/docker_cwl_entrypoint.sh"]
13+
args: ["https://raw.githubusercontent.com/unity-sds/unity-sps-prototype/cwl-docker/cwl/cwl_workflows/echo_from_docker.cwl", "{}"]
1314
securityContext:
1415
privileged: true
1516

airflow/dags/say_hello_from_cwl_and_docker_dag.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ def setup(ti=None, **context):
6868
full_pod_spec=k8s.V1Pod(
6969
k8s.V1ObjectMeta(name=('docker-cwl-pod-' + uuid.uuid4().hex))),
7070
pod_template_file="/opt/airflow/dags/docker_cwl_pod.yaml",
71-
image="ghcr.io/unity-sds/unity-sps-prototype/unity-sps-docker-cwl:latest",
72-
arguments=["{{ params.cwl_workflow }}", "{{ti.xcom_pull(task_ids='Setup', key='cwl_args')}}"],
71+
#image="ghcr.io/unity-sds/unity-sps-prototype/unity-sps-docker-cwl:latest",
72+
#arguments=["{{ params.cwl_workflow }}", "{{ti.xcom_pull(task_ids='Setup', key='cwl_args')}}"],
7373
# resources={"request_memory": "512Mi", "limit_memory": "1024Mi"},
7474
dag=dag)
7575

0 commit comments

Comments
 (0)