Bug 1243846
| Summary: | Neutron L3 agent HA doesn't get configured when using direct heat templates for provisioning | ||
|---|---|---|---|
| Product: | Red Hat OpenStack | Reporter: | Marius Cornea <mcornea> |
| Component: | python-rdomanager-oscplugin | Assignee: | Dougal Matthews <dmatthew> |
| Status: | CLOSED ERRATA | QA Contact: | Marius Cornea <mcornea> |
| Severity: | high | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 7.0 (Kilo) | CC: | calfonso, dmacpher, dmatthew, jslagle, mburns, ohochman, rhel-osp-director-maint, rrosa, sclewis |
| Target Milestone: | ga | ||
| Target Release: | Director | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | python-rdomanager-oscplugin-0.0.8-39.el7ost | Doc Type: | Bug Fix |
| Doc Text: |
The Heat templates lacked a certain parameter to configure the Neutron L3 Agent. As a result the director would not configure the L3 Agent properly. This fix adds the
missing Heat parameter to the templates. the director now configures the L3 Agent correctly.
|
Story Points: | --- |
| Clone Of: | Environment: | ||
| Last Closed: | 2015-08-05 13:59:43 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Marius Cornea
2015-07-16 12:58:53 UTC
openstack overcloud deploy --control-scale 3 --compute-scale 1 -e /usr/share/openstack-tripleo-heat-templates/environments/network-isolation.yaml -e network-environment.yaml -e /usr/share/openstack-tripleo-heat-templates/environments/net-single-nic-with-vlans.yaml --templates source overcloudrc neutron net-create ext_net --provider:network_type vlan --provider:physical_network datacentre --provider:segmentation_id 10 --router:external neutron subnet-create ext_net --allocation-pool start=172.16.23.110,end=172.16.23.150 --gateway 172.16.23.251 --cidr 172.16.23.0/24 --enable_dhcp=False neutron net-create tenant-net neutron subnet-create tenant-net 192.168.0.0/24 --name tenant-subnet --gateway 192.168.0.1 neutron router-create tenant-router neutron router-interface-add tenant-router tenant-subnet neutron router-gateway-set tenant-router ext_net [stack@instack ~]$ neutron l3-agent-list-hosting-router tenant-router +--------------------------------------+------------------------------------+----------------+-------+----------+ | id | host | admin_state_up | alive | ha_state | +--------------------------------------+------------------------------------+----------------+-------+----------+ | 038befaf-5aac-4b44-9dec-f0b344a2d061 | overcloud-controller-2.localdomain | True | :-) | standby | | 3fd57800-e6b2-49a2-9432-061da9546f6b | overcloud-controller-0.localdomain | True | :-) | standby | | 3cbe2f25-683d-4db4-aa01-d8223ee69914 | overcloud-controller-1.localdomain | True | :-) | standby | +--------------------------------------+------------------------------------+----------------+-------+----------+ [stack@instack ~]$ neutron l3-agent-list-hosting-router tenant-router +--------------------------------------+------------------------------------+----------------+-------+----------+ | id | host | admin_state_up | alive | ha_state | +--------------------------------------+------------------------------------+----------------+-------+----------+ | 038befaf-5aac-4b44-9dec-f0b344a2d061 | overcloud-controller-2.localdomain | True | :-) | active | | 3fd57800-e6b2-49a2-9432-061da9546f6b | overcloud-controller-0.localdomain | True | :-) | standby | | 3cbe2f25-683d-4db4-aa01-d8223ee69914 | overcloud-controller-1.localdomain | True | :-) | standby | +--------------------------------------+------------------------------------+----------------+-------+----------+ Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHEA-2015:1549 |