Reputation: 23
I want to build argo workflow. However, in order to save running time and latency I want to run some steps on the same docker and machine (without the need to output and input the data between each component), How can I implement it?
Thanks!
Upvotes: 0
Views: 2018
Reputation: 8392
If you want to run multiple steps within the same container image, you'll need to create a custom container image.
If you are okay using multiple containers and just want them to run on the same Pod, you can use a container set template.
Container set templates are designed for short-running tasks that don't really justify spinning up a new Pod.
Upvotes: 3