This message was deleted.
# general
s
This message was deleted.
i
pulumi up --parallel 3
(or whatever limit you want)?
i
doesn’t make any change @important-appointment-55126
also I don’t want to limit myself to overall resource apply at the same time, I need this limit just for
docker build
i
yeah a hammer solution for sure, though i would of expected it to actually limit the number of concurrent jobs in progress.. odd
i
yea, it’s not limited 😞
l
@icy-jordan-58549 you could use the
dependsOn
property between some of the
Image
resources to serialize the creation of the images. In your screenshot, I count 11 images, so you could link them up in 2 chains: • 1 <- 2 <- 3 <- 4 <- 5 <- 6 • 7 <- 8 <- 9 <- 10 <- 11 Where
<-
represents the
dependsOn
and the numbers the image resources in the example above
i
@limited-rainbow-51650 thanks for suggestion, I was already trying that one. It doesn’t fix the problem. Probably, I need to spend more time, could be I had a bug in implementation. But as far I know, dependsOn should do the trick.