diff options
author | wutianwei <wutianwei1@huawei.com> | 2017-06-27 19:49:07 +0800 |
---|---|---|
committer | wutianwei <wutianwei1@huawei.com> | 2017-06-30 12:10:05 +0800 |
commit | 5371004738b1430e56a3e7679284a5e822255d2e (patch) | |
tree | 036ee67714b08a7cc62e35deda0ef66a889ec6a0 /deploy/adapters/ansible/openstack | |
parent | 7107ed60659e23863ffcd227600bf741489f24d8 (diff) |
setup ovs create network flavor
1. replace the linuxbridge with openvswitch
2. create the network and flavors
3. fix the haproxy when public endpoint using http
Change-Id: I6fe93d0c4d5305e5dcab8d2e6c628eb5fa23ab56
Signed-off-by: wutianwei <wutianwei1@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/openstack')
-rw-r--r-- | deploy/adapters/ansible/openstack/HA-ansible-multinodes.yml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/deploy/adapters/ansible/openstack/HA-ansible-multinodes.yml b/deploy/adapters/ansible/openstack/HA-ansible-multinodes.yml index 2a3e649a..29796323 100644 --- a/deploy/adapters/ansible/openstack/HA-ansible-multinodes.yml +++ b/deploy/adapters/ansible/openstack/HA-ansible-multinodes.yml @@ -26,7 +26,11 @@ - hosts: localhost remote_user: root roles: - - config-deployment - - setup-host - - setup-infrastructure - - setup-openstack + - role: config-deployment + - role: setup-host + - role: setup-infrastructure + - role: setup-openstack + - role: setup-openvswitch + when: NEUTRON_MECHANISM_DRIVERS[0] == "openvswitch" or + NEUTRON_MECHANISM_DRIVERS[0] == "opendaylight" + - role: openstack-post |