This message was deleted.
# general
s
This message was deleted.
l
Would that be equivalent to
pulumi up --parallel 1
?
Obviously doesn't change the order in which resources are processed, but maybe it's close enough for you needs?
The only other thing I'm aware of would be to use
--target-dependents --target <one host>
, then repeat for each host... 😞
f
An alternative could be to chain the hosts together via
dependsOn
so that one depends on the previous one
b
@little-cartoon-10569 yea I think the explicit targeting might be what I need to do 😞. I tried the parallel=1 already and it walked from the leaf dependencies down level wise (e.g. detached volumes and then reprovisioned hosts).
@faint-table-42725 hrm chaining could be interesting…
i’ll give it a try the AttachVolume(s) and instance creation are encapsulated in a ComponentResource so might just work!
👍 1