@@ -195,10 +195,13 @@ install the Monai Informatics Gateway.
195
195
196
196
2 . Configure the aeTitle:
197
197
198
- ``` kubectl exec -ti mig-monai bash ```
199
- ``` curl --location --request POST 'http://localhost:5000/config/ae/' --header 'Content-Type: application/json' --data-raw '{ "aeTitle": "MONAISCU", "name": "MONAISCU" }' ```
198
+ ```
199
+ MIG=$(kubectl get pods --no-headers -o=name --selector=app.kubernetes.io/instance=mig)
200
+ kubectl exec -ti ${MIG} -- curl --location --request POST 'http://localhost:5000/config/ae/' --header 'Content-Type: application/json' --data-raw '{ "aeTitle": "MONAISCU", "name": "MONAISCU" }```
201
+ kubectl exec -ti ${MIG} -- curl --location --request POST http://localhost:5000/config/destination --header 'Content-Type: application/json' --data-raw '{"name": "ORTHANC", "hostIp": "orthanc-monai", "port": 4242, "aeTitle": "ORTHANC"}'
200
202
201
- Note without this extra step, you will not be able to connect Orthanc.
203
+ Note without this extra step, you will not be able to connect to and from
204
+ Orthanc.
202
205
203
206
And now is time to install Orthanc, the last piece.
204
207
@@ -280,7 +283,7 @@ You can still use the REST api.
280
283
281
284
Select "upload dcm image"
282
285
283
- You can use one from .... FIXME
286
+ You can use [0]
284
287
285
288
### Send the dcm to MIG
286
289
@@ -428,5 +431,15 @@ More info at:
428
431
429
432
https://github.com/Project-MONAI/monai-deploy-informatics-gateway/blob/develop/docs/api/rest/config.md
430
433
434
+ 1- If you see an error in the Informatics Gateway Log that could not
435
+ connect to the destination AE, it is because the Informatics
436
+ Gateway lacks the configuration about ORTHANC as the destination.
437
+
438
+ More info at:
439
+
440
+ https://github.com/Project-MONAI/monai-deploy-informatics-gateway/blob/develop/docs/api/rest/config.md
431
441
432
442
443
+ [0] https://drive.google.com/file/d/1d8Scm3q-kHTqr_-KfnXH0rPnCgKld2Iy/view?usp=sharing
444
+ a DICOM dataset that was converted to DICOM from Medical Decathlon
445
+ training and validation images (see https://github.com/Project-MONAI/monai-deploy/tree/main/deploy/monai-deploy-express#running-a-monai-deploy-workflow)
0 commit comments