6b99f21341
- Barbican - Ceilometer - Cloudkitty - Congress - Designate This will copy only yaml or json policy file if they exist. Change-Id: Iaa19f64073d8bdee948bc2de58e095ca72afc092 Implements: blueprint support-custom-policy-yaml Co-authored-By: Duong Ha-Quang <duonghq@vn.fujitsu.com>
61 lines
2.1 KiB
Django/Jinja
61 lines
2.1 KiB
Django/Jinja
[DEFAULT]
|
|
debug = {{ cloudkitty_logging_debug }}
|
|
|
|
log_dir = /var/log/kolla/cloudkitty
|
|
|
|
{% if service_name == 'cloudkitty-api' %}
|
|
# Force cloudkitty-api.log or will use app.wsgi
|
|
log_file = /var/log/kolla/cloudkitty/cloudkitty-api.log
|
|
{% endif %}
|
|
|
|
transport_url = {{ rpc_transport_url }}
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ cloudkitty_database_user }}:{{ cloudkitty_database_password }}@{{ cloudkitty_database_address }}/{{ cloudkitty_database_name }}
|
|
max_retries = -1
|
|
|
|
[keystone_authtoken]
|
|
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
auth_type = password
|
|
project_domain_id = {{ default_project_domain_id }}
|
|
user_domain_id = {{ default_user_domain_id }}
|
|
project_name = service
|
|
username = {{ cloudkitty_keystone_user }}
|
|
password = {{ cloudkitty_keystone_password }}
|
|
|
|
memcache_security_strategy = ENCRYPT
|
|
memcache_secret_key = {{ memcache_secret_key }}
|
|
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
|
|
[oslo_concurrency]
|
|
lock_path = /var/lib/cloudkitty/tmp
|
|
|
|
{% if cloudkitty_policy_file is defined %}
|
|
[oslo_policy]
|
|
policy_file = {{ cloudkitty_policy_file }}
|
|
{% endif %}
|
|
|
|
[collect]
|
|
collector = {{ cloudkitty_collector_backend }}
|
|
services = compute,image{% if enable_cinder | bool %},volume{% endif %},network.bw.out,network.bw.in,network.floating
|
|
|
|
[keystone_fetcher]
|
|
keystone_version = 3
|
|
auth_section = keystone_authtoken
|
|
|
|
{% if cloudkitty_collector_backend == "gnocchi" %}
|
|
[gnocchi_collector]
|
|
auth_section = keystone_authtoken
|
|
{% elif cloudkitty_collector_backend == "ceilometer" %}
|
|
[ceilometer_collector]
|
|
auth_section = keystone_authtoken
|
|
{% endif %}
|
|
|
|
[api]
|
|
host_ip = {{ api_interface_address }}
|
|
port = {{ cloudkitty_api_port }}
|
|
|
|
[orchestrator]
|
|
coordination_url = mysql://{{ cloudkitty_database_user }}:{{ cloudkitty_database_password }}@{{ cloudkitty_database_address }}/{{ cloudkitty_database_name }}
|