You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Jenkins pipeline job with multiple parallel subjobs. They all should use the same ACI container template and consequently spin up multiple container instances (groups?) so that they can run in parallel with each of them having their own reserved cpu and memory. See this Jenkinsfile example. But the following happens:
the parallel subjobs request an ACI slave
one such ACI (group?) is created in Azure
both jobs wait for the container to come online
the first subjob gets the single executor on that slave once the container is started
once the container is started the first subjob builds
second subjob requests another slave
second subjob waits for the new container to come online
once the second container is started the second subjob builds
Between the start of the two containers around 3 minutes pass but they should be started at the same time ideally.
To solve this there should be the option to create a dedicated slave for each request. Is this possible?
Thanks!
The text was updated successfully, but these errors were encountered:
First: awesome plugin!
But unfortunately I am running into a problem:
I have a Jenkins pipeline job with multiple parallel subjobs. They all should use the same ACI container template and consequently spin up multiple container instances (groups?) so that they can run in parallel with each of them having their own reserved cpu and memory. See this Jenkinsfile example. But the following happens:
Between the start of the two containers around 3 minutes pass but they should be started at the same time ideally.
To solve this there should be the option to create a dedicated slave for each request. Is this possible?
Thanks!
The text was updated successfully, but these errors were encountered: