Skip to content

Commit

Permalink
Service chain ip only for internal use
Browse files Browse the repository at this point in the history
Set service chain ip for internal use only and not return
the ip address as part of neutron/nova queries. Only the
non service-chain ips should be used for booting up the VM.

Change-Id: Ifcb8615cb6a52bba0ddc1830b00e9fa7ea4ee435
Closes-Bug: #1548942
  • Loading branch information
rrugge committed Feb 29, 2016
1 parent f14892a commit 86e4518
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/config/vnc_openstack/vnc_openstack/neutron_plugin_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -2067,6 +2067,9 @@ def _port_vnc_to_neutron(self, port_obj, port_req_memo=None):
except NoIdError:
continue

if ip_obj.get_service_instance_ip() and ip_obj.get_instance_ip_secondary():
continue

ip_addr = ip_obj.get_instance_ip_address()

ip_q_dict = {}
Expand Down

0 comments on commit 86e4518

Please sign in to comment.