Reputation: 183
I've one Job that has 500 containers, each container run a different file. But I'm try to execute 10 containers by time, but the parallelism is for the pod and not the containers.
Is there any way to control the parallelism in containers levels ?
Upvotes: 0
Views: 90
Reputation: 3780
Pods are the smallest deployable units of computing that you can create and manage in Kubernetes.
So, the answer is no.
https://kubernetes.io/docs/concepts/workloads/pods/
Upvotes: 1