user6001037
user6001037

Reputation: 23

Argo Workflow - share machine between steps

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

Answers (1)

crenshaw-dev
crenshaw-dev

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

Related Questions