summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorKaifeng Wang <kaifeng.w@gmail.com>2020-11-03 21:22:03 +0800
committerKaifeng Wang <kaifeng.w@gmail.com>2020-11-13 06:37:17 +0000
commitf93003d968acdd8e4ecda05c52cfacc8de3c9888 (patch)
tree486df2ec79903fa5a83f4ab738d28c2dd51c12f2 /releasenotes
parent6da70f14ed2e634e9f527f52b3000c8158354a85 (diff)
downloadironic-f93003d968acdd8e4ecda05c52cfacc8de3c9888.tar.gz
Fixes the issue that instance bond port can't get IP address
The issue is that when a port group doesn't have a mac address assigned by operators, and during provisioning we unbind/bind tenant port with None which causes the mac address to be regenerated twice and differs from the originally one allocated by nova or users which was packed into config drive. The end result is that, bond port has different mac address configured and can't the IP address from neutron. Change-Id: I92ed5d17239216324d6a69e0ed8771fd6948d6ec Story: 2008300 Task: 41185 (cherry picked from commit fe01ddb2bce12dc1693d64a30e5b1b822e7b839e)
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/portgroup-mac-649ed31c3525e4f0.yaml7
1 files changed, 7 insertions, 0 deletions
diff --git a/releasenotes/notes/portgroup-mac-649ed31c3525e4f0.yaml b/releasenotes/notes/portgroup-mac-649ed31c3525e4f0.yaml
new file mode 100644
index 000000000..2859fd695
--- /dev/null
+++ b/releasenotes/notes/portgroup-mac-649ed31c3525e4f0.yaml
@@ -0,0 +1,7 @@
+---
+fixes:
+ - |
+ Fixes the issue that when the MAC address of a port group is not set and
+ been attached to instance, the landed bond port cannot get IP address
+ due to inconsistent MAC address between the tenant port and the initially
+ allocated one in the config drive.