-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple vms gets the same ip within the same network #781
Comments
can you share the tf file please |
It seems a problem with the Go grid client that it assigns the same IP for different deployments when on the same network |
Verification
node1_zmachine1_ip = "172.20.3.2"
node2_zmachine1_ip = "172.20.3.3" ProblemTried to deploy 2 deployments of 2 VMs on different nodes, but the IPs were the same ❌ node1_zmachine1_ip = "172.20.3.2"
node2_zmachine1_ip = "172.20.3.2" This is because the parallelism that terraform supports for the resource, so if we deployed 2 vm resources it won't wait for the state to be updated We should mention this issue as a known one in the README |
Known issueTried to deploy 2 deployments of 2 VMs on different nodes, but the IPs were the same ❌ node1_zmachine1_ip = "172.20.3.2"
node2_zmachine1_ip = "172.20.3.2" This is because the parallelism that terraform supports for the resource, so if we deployed 2 or more vm resources it won't wait for the state to be updated, hence the same IP will be assigned for them |
Description
I am trying to deploy a nomad cluster but deployment results in multiple vms with the same ip.
I've attempt to set the ip of "server1" to some value "10.1.2.2"
Expected Behavior
Actual Behavior
The text was updated successfully, but these errors were encountered: