Alan Miranda
Alan Miranda

Reputation: 183

How to control numbers of container running inside Job on kubernetes

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

Answers (1)

Rakesh Gupta
Rakesh Gupta

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

Related Questions