4f8eb892c7
- Freezer - Gnocchi - Kuryr - Murano - Panko This will copy only yaml or json policy file if they exist. Change-Id: I5450839cb06c515f2be445883421f8f987ca834d Implements: blueprint support-custom-policy-yaml Co-authored-By: Duong Ha-Quang <duonghq@vn.fujitsu.com>
41 lines
1.3 KiB
Django/Jinja
41 lines
1.3 KiB
Django/Jinja
[DEFAULT]
|
|
debug = {{ freezer_logging_debug }}
|
|
|
|
log_dir = /var/log/kolla/freezer
|
|
|
|
{% if service_name == 'freezer-api' %}
|
|
bind_host = {{ api_interface_address }}
|
|
bind_port = {{ freezer_api_port }}
|
|
{% endif %}
|
|
|
|
[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 = {{ freezer_keystone_user }}
|
|
password = {{ freezer_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 %}
|
|
|
|
{% if freezer_policy_file is defined %}
|
|
[oslo_policy]
|
|
policy_file = {{ freezer_policy_file }}
|
|
{% endif %}
|
|
|
|
[paste_deploy]
|
|
config_file = /etc/freezer/freezer-paste.ini
|
|
|
|
[storage]
|
|
backend = elasticv2
|
|
driver = freezer_api.storage.elasticv2.ElasticSearchEngineV2
|
|
|
|
[elasticv2]
|
|
hosts = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ elasticsearch_port }}
|
|
number_of_replicas = 0
|
|
index = freezer
|