[DEFAULT] debug = {{ ironic_logging_debug }} log_dir = /var/log/kolla/ironic {% if orchestration_engine != 'KUBERNETES' %} listen_address = {{ api_interface_address }} {% else %} listen_address = 0.0.0.0 {% endif %} listen_port = {{ ironic_inspector_port }} [ironic] {% if orchestration_engine == 'KUBERNETES' %} auth_url = {{ keystone_admin_url }} {% else %} auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }} {% endif %} auth_type = password project_domain_id = default user_domain_id = default project_name = service username = {{ ironic_inspector_keystone_user }} password = {{ ironic_inspector_keystone_password }} [keystone_authtoken] {% if orchestration_engine == 'KUBERNETES' %} auth_uri = {{ keystone_internal_url }} auth_url = {{ keystone_admin_url }} {% else %} auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }} auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }} {% endif %} auth_type = password project_domain_id = default user_domain_id = default project_name = service username = {{ ironic_inspector_keystone_user }} password = {{ ironic_inspector_keystone_password }} memcache_security_strategy = ENCRYPT memcache_secret_key = {{ memcache_secret_key }} {% if orchestration_engine == 'KUBERNETES' %} memcache_servers = {{ memcached_servers }} {% else %} memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %} {%- endif %} [firewall] {% if orchestration_engine == 'KUBERNETES' %} dnsmasq_interface = undefined {% else %} dnsmasq_interface = {{ ironic_dnsmasq_interface }} {%- endif %} [database] connection = mysql+pymysql://{{ ironic_inspector_database_user }}:{{ ironic_inspector_database_password }}@{{ ironic_inspector_database_address }}/{{ ironic_inspector_database_name }}