diff options
Diffstat (limited to 'deploy/adapters/ansible/roles/tacker/templates')
3 files changed, 41 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/tacker/templates/haproxy-tacker-cfg.j2 b/deploy/adapters/ansible/roles/tacker/templates/haproxy-tacker-cfg.j2 new file mode 100644 index 00000000..796e59e8 --- /dev/null +++ b/deploy/adapters/ansible/roles/tacker/templates/haproxy-tacker-cfg.j2 @@ -0,0 +1,10 @@ +listen proxy-tacker_api_cluster + bind {{ internal_vip.ip }}:8890 + bind {{ public_vip.ip }}:8890 + mode tcp + option tcp-check + option tcplog + balance source +{% for host,ip in haproxy_hosts.items() %} + server {{ host }} {{ ip }}:8890 weight 1 check inter 2000 rise 2 fall 5 +{% endfor %} diff --git a/deploy/adapters/ansible/roles/tacker/templates/ml2_conf.j2 b/deploy/adapters/ansible/roles/tacker/templates/ml2_conf.j2 new file mode 100644 index 00000000..a5ccdaf4 --- /dev/null +++ b/deploy/adapters/ansible/roles/tacker/templates/ml2_conf.j2 @@ -0,0 +1,2 @@ +[ml2] +extension_drivers = port_security diff --git a/deploy/adapters/ansible/roles/tacker/templates/tacker.j2 b/deploy/adapters/ansible/roles/tacker/templates/tacker.j2 new file mode 100644 index 00000000..1b9add7f --- /dev/null +++ b/deploy/adapters/ansible/roles/tacker/templates/tacker.j2 @@ -0,0 +1,29 @@ +[DEFAULT] +bind_host = {{ internal_ip }} +bind_port = 8890 +auth_strategy = keystone +policy_file = /usr/local/etc/tacker/policy.json +debug = True +verbose = True +use_syslog = False +state_path = /var/lib/tacker + +[keystone_authtoken] +password = console +auth_uri = http://{{ internal_vip.ip }}:5000 +auth_url = http://{{ internal_vip.ip }}:35357 +project_name = service + +[agent] +root_helper = sudo /usr/local/bin/tacker-rootwrap /usr/local/etc/tacker/rootwrap.conf + +[DATABASE] +connection = mysql://tacker:TACKER_DBPASS@{{ internal_vip.ip }}:3306/tacker?charset=utf8 + +[servicevm_nova] +password = console +auth_url = http://{{ internal_vip.ip }}:35357 + +[servicevm_heat] +heat_uri = http://{{ internal_vip.ip }}:8004/v1 + |