Skip to content

Commit 178f930

Browse files
Merge pull request openshift#226 from abhinavdahiya/libvirt_fix_race
steps/infra: serialize master and worker domain sets for libvirt
2 parents 741d5cc + f943dd6 commit 178f930

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

steps/infra/libvirt/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ resource "libvirt_domain" "worker" {
105105
hostname = "${var.tectonic_cluster_name}-worker-${count.index}"
106106
addresses = ["${var.tectonic_libvirt_worker_ips[count.index]}"]
107107
}
108+
109+
depends_on = ["libvirt_domain.master"]
108110
}
109111

110112
locals {

0 commit comments

Comments
 (0)