diff options
author | Yifei Xue <xueyifei@huawei.com> | 2018-01-27 16:48:33 +0800 |
---|---|---|
committer | Yifei Xue <xueyifei@huawei.com> | 2018-01-30 12:27:15 +0800 |
commit | e7f4a7321e549f88c461714dc0c9f24f925928e3 (patch) | |
tree | e55376eab6d5e140c0b28f0b0cc754ad693f8076 /deploy/adapters/ansible/roles/post-osa/tasks/main.yml | |
parent | 7dfbe30d59e513da56fe34e3ffa44840a4c41ded (diff) |
Add tacker support in compass4nfv for Fraser
JIRA: COMPASS-577
1. Add tacker service into haproxy configuration file
2. Include tacker installation into setup-openstack.yml
Change-Id: I5a91766e034ec55af711029aac4ba9ed4a388db2
Signed-off-by: Yifei Xue <xueyifei@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/post-osa/tasks/main.yml')
-rw-r--r-- | deploy/adapters/ansible/roles/post-osa/tasks/main.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/deploy/adapters/ansible/roles/post-osa/tasks/main.yml b/deploy/adapters/ansible/roles/post-osa/tasks/main.yml index 205f3392..fed3842f 100644 --- a/deploy/adapters/ansible/roles/post-osa/tasks/main.yml +++ b/deploy/adapters/ansible/roles/post-osa/tasks/main.yml @@ -13,11 +13,10 @@ - ansible_distribution == 'Ubuntu' # install networking-sfc for non odl scenarios -# - include: install_networking_sfc.yml -# when: -# - odl_sfc is not defined or odl_sfc == "Disable" -# - inventory_hostname not in groups['compute'] -# when: ansible_distribution == 'Ubuntu' +- include: install_networking_sfc.yml + when: + - opendaylight is not defined or opendaylight == "Disable" + - inventory_hostname not in groups['horizon_all'] - include: "{{ ansible_os_family }}.yml" when: @@ -27,3 +26,6 @@ - include: ceilometer-upgrade.yml when: - inventory_hostname in groups['ceilometer_all'] + +- include: tacker_horizon.yml + when: inventory_hostname in groups['horizon_all'] |