Skip to content

Commit 782a36a

Browse files
committed
Added additonal E2E test data and evidence
Signed-off-by: Joe Batt <joe.batt@answerdigital.com>
1 parent cea03e8 commit 782a36a

3 files changed

Lines changed: 150 additions & 104 deletions

File tree

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
metadata:
2+
name: argo-workflow-1-new
3+
generateName: mean-pixel-calc-
4+
namespace: argo
5+
uid: 63a4c898-06b7-45a4-8081-8106ff40d09a
6+
resourceVersion: '5502072'
7+
generation: 4
8+
creationTimestamp: '2022-09-23T13:52:45Z'
9+
labels:
10+
workflows.argoproj.io/creator: system-serviceaccount-argo-argo-server
11+
managedFields:
12+
- manager: argo
13+
operation: Update
14+
apiVersion: argoproj.io/v1alpha1
15+
time: '2022-09-23T13:52:45Z'
16+
fieldsType: FieldsV1
17+
fieldsV1:
18+
f:metadata:
19+
f:generateName: {}
20+
f:labels:
21+
.: {}
22+
f:workflows.argoproj.io/creator: {}
23+
f:spec: {}
24+
spec:
25+
templates:
26+
- name: demo-pipeline
27+
inputs: {}
28+
outputs: {}
29+
metadata: {}
30+
steps:
31+
- - name: calculate-mean
32+
template: mean-calc
33+
arguments:
34+
artifacts:
35+
- name: input-dicom
36+
s3:
37+
accessKeySecret:
38+
name: my-minio-cred
39+
key: accesskey
40+
secretKeySecret:
41+
name: my-minio-cred
42+
key: secretkey
43+
key: argo/inputs/artifacts/input-dicom
44+
- - name: generate-report
45+
template: dicom-encapsulation
46+
arguments:
47+
artifacts:
48+
- name: input-dicom
49+
s3:
50+
accessKeySecret:
51+
name: my-minio-cred
52+
key: accesskey
53+
secretKeySecret:
54+
name: my-minio-cred
55+
key: secretkey
56+
key: argo/inputs/artifacts/input-dicom
57+
- name: report-pdf
58+
from: '{{steps.calculate-mean.outputs.artifacts.report-pdf}}'
59+
- name: mean-calc
60+
inputs:
61+
artifacts:
62+
- name: input-dicom
63+
path: /tmp/dicom_input
64+
s3:
65+
accessKeySecret:
66+
name: my-minio-cred
67+
key: accesskey
68+
secretKeySecret:
69+
name: my-minio-cred
70+
key: secretkey
71+
key: argo/inputs/artifacts/input-dicom
72+
outputs:
73+
artifacts:
74+
- name: report-pdf
75+
path: /tmp/pixel_mean_output/report.pdf
76+
s3:
77+
bucket: bucket1
78+
accessKeySecret:
79+
name: my-minio-cred
80+
key: accesskey
81+
secretKeySecret:
82+
name: my-minio-cred
83+
key: secretkey
84+
key: >-
85+
00000000-1000-0000-0000-000000000000/report-pdf/pixel_mean_output/report.pdf
86+
metadata: {}
87+
container:
88+
name: ''
89+
image: >-
90+
registry.gitlab.com/answerdigital/londonai/aide/demo_pipeline/test_model_operator:argo
91+
command:
92+
- sh
93+
- '-c'
94+
args:
95+
- python main.py
96+
resources: {}
97+
- name: dicom-encapsulation
98+
inputs:
99+
inputs:
100+
artifacts:
101+
- name: input-dicom
102+
path: /tmp/dicom_input
103+
s3:
104+
accessKeySecret:
105+
name: my-minio-cred
106+
key: accesskey
107+
secretKeySecret:
108+
name: my-minio-cred
109+
key: secretkey
110+
key: argo/inputs/artifacts/input-dicom
111+
- name: report
112+
path: /tmp/pixel_mean_output/report.pdf
113+
s3:
114+
accessKeySecret:
115+
name: my-minio-cred
116+
key: accesskey
117+
secretKeySecret:
118+
name: my-minio-cred
119+
key: secretkey
120+
key: report/pixel_mean_output/report.pdf
121+
outputs:
122+
artifacts:
123+
- name: report-dicom-2
124+
path: /tmp/reporter_output/output.dcm
125+
s3:
126+
accessKeySecret:
127+
name: my-minio-cred
128+
key: accesskey
129+
secretKeySecret:
130+
name: my-minio-cred
131+
key: secretkey
132+
key: 00000000-1000-0000-0000-000000000000/reporter_output/output.dcm
133+
metadata: {}
134+
container:
135+
name: ''
136+
image: >-
137+
registry.gitlab.com/answerdigital/londonai/aide/demo_pipeline/test_model_reporter:argo
138+
command:
139+
- sh
140+
- '-c'
141+
args:
142+
- python main.py
143+
resources: {}
144+
entrypoint: demo-pipeline
145+
arguments: {}
146+
imagePullSecrets:
147+
- name: demo-pipeline-docker-registry-secret

e2e-testing/test-scenarios/Clinical_Workflows/task_destination copy.json

Lines changed: 0 additions & 101 deletions
This file was deleted.

e2e-testing/test-scenarios/Clinical_Workflows/task_destination.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
],
6767
"output": [
6868
{
69-
"name": "report"
69+
"name": "report-dicom-new"
7070
}
7171
]
7272
}
@@ -90,8 +90,8 @@
9090
"mandatory": true
9191
},
9292
{
93-
"name": "report",
94-
"value": "{{ context.executions.argo-task-2.artifacts.report-pdf }}",
93+
"name": "report-dicom-new",
94+
"value": "{{ context.executions.argo-task-2.artifacts.report-dicom-new }}",
9595
"mandatory": true
9696
}
9797
]

0 commit comments

Comments
 (0)