From cbfac2e20c14596c17ec0eee3dfa9c3cdcdeca31 Mon Sep 17 00:00:00 2001 From: Yifei Xue Date: Fri, 11 Mar 2016 16:39:50 +0800 Subject: Add Tacker support for Compass JIRA: COMPASS-339 only ubuntu supported currently Change-Id: I14bae2b11a811c1131eba1d25f57783dffbb0b51 Signed-off-by: Yifei Xue --- .../ansible/roles/tacker/templates/tacker.j2 | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 deploy/adapters/ansible/roles/tacker/templates/tacker.j2 (limited to 'deploy/adapters/ansible/roles/tacker/templates/tacker.j2') 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 + -- cgit 1.2.3-korg