Skip to content

Commit

Permalink
Update Argo Workflow with updates resources section
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaroberts committed Feb 15, 2023
1 parent 1513203 commit f5d3ee0
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions app/workflows/totalsegmentator-argo-template.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
metadata:
name: totalsegmentator-argo-template
generateName: totalsegmentator-argo-template-
namespace: argo
spec:
templates:
- name: totalsegmentator
Expand Down Expand Up @@ -32,14 +33,23 @@ spec:
metadata: {}
container:
name: ''
image: ghcr.io/gstt-csc/totalsegmentator-aide/map:0.1.1
image: ghcr.io/gstt-csc/totalsegmentator-aide/map:0.1.2
command:
- /bin/bash
- '-c'
args:
- python3 -u /opt/monai/app/app.py
resources:
limits:
cpu: '20'
memory: 128Gi
nvidia.com/gpu: '1'
requests:
cpu: '0'
memory: '0'
nvidia.com/gpu: '1'
imagePullPolicy: IfNotPresent
podSpecPatch: >-
{"initContainers":[{"name":"init","resources":{"limits":{"cpu":"1","memory":"1000Mi"},"requests":{"cpu":"0","memory":"0Mi"}}}],"containers":[{"name":"wait","resources":{"limits":{"cpu":"1","memory":"1000Mi"},"requests":{"cpu":"0","memory":"0Mi"}}}]}
entrypoint: totalsegmentator
arguments: {}
arguments: {}

0 comments on commit f5d3ee0

Please sign in to comment.