Skip to content

Commit ba4c3e9

Browse files
committed
ignore port dhcp changes to fix networking-mlxn
1 parent deb94e3 commit ba4c3e9

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

environments/site/tofu/control.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ resource "openstack_networking_port_v2" "control" {
3636
}
3737

3838
lifecycle {
39-
ignore_changes = [ binding ]
39+
ignore_changes = [
40+
binding, # fixes running as admin
41+
extra_dhcp_option # required for networking-mlnx neutron plugin
42+
]
4043
}
4144
}
4245

environments/site/tofu/node_group/nodes.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ resource "openstack_networking_port_v2" "compute" {
7373
}
7474

7575
lifecycle {
76-
ignore_changes = [ binding ]
76+
ignore_changes = [
77+
binding, # fixes running as admin
78+
extra_dhcp_option # required for networking-mlnx neutron plugin
79+
]
7780
}
7881
}
7982

0 commit comments

Comments
 (0)