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/config-osa/files/haproxy.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/config-osa/files/haproxy.yml')
-rw-r--r-- | deploy/adapters/ansible/roles/config-osa/files/haproxy.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/config-osa/files/haproxy.yml b/deploy/adapters/ansible/roles/config-osa/files/haproxy.yml index 3085f6aa..a0a09e49 100644 --- a/deploy/adapters/ansible/roles/config-osa/files/haproxy.yml +++ b/deploy/adapters/ansible/roles/config-osa/files/haproxy.yml @@ -261,3 +261,14 @@ haproxy_default_services: haproxy_backend_options: - "httpchk GET /" haproxy_whitelist_networks: "{{ haproxy_octavia_whitelist_networks }}" + + - service: + haproxy_service_name: tacker + haproxy_backend_nodes: "{{ groups['tacker_all'] | default([]) }}" + haproxy_ssl: "{{ haproxy_ssl }}" + haproxy_port: 9890 + haproxy_balance_type: http + haproxy_backend_options: + - "forwardfor" + - "httpchk" + - "httplog" |