79df5d84f8
Add Ansible configuration for Tacker NFV service Change-Id: I472d96e13a5270d1ee219c2f72f57d9c361f87a6 Partially-Implements: blueprint tacker-support
30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
---
|
|
project_name: "tacker"
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
tacker_database_name: "tacker"
|
|
tacker_database_user: "tacker"
|
|
tacker_database_address: "{{ kolla_internal_fqdn }}:{{ database_port }}"
|
|
|
|
########
|
|
# Docker
|
|
########
|
|
tacker_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-tacker"
|
|
tacker_tag: "{{ openstack_release }}"
|
|
tacker_image_full: "{{ tacker_image }}:{{ tacker_tag }}"
|
|
|
|
####################
|
|
# OpenStack
|
|
####################
|
|
tacker_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ tacker_server_port }}"
|
|
tacker_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ tacker_server_port }}"
|
|
tacker_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ tacker_server_port }}"
|
|
|
|
tacker_logging_debug: "{{ openstack_logging_debug }}"
|
|
|
|
tacker_keystone_user: "tacker"
|
|
|
|
openstack_tacker_auth: "{'auth_url':'{{ openstack_auth.auth_url }}','username':'{{ openstack_auth.username }}','password':'{{ openstack_auth.password }}','project_name':'{{ openstack_auth.project_name }}'}"
|