openstack-ansible-os_neutron/templates/metadata_agent.ini.j2
Dmitriy Rabotyagov e43313af85 Rename nova_metadata_* variables
Rename nova_metadata_* variables to neutron_nova_metadata_*
so less confusing names. At the same time these new variables will
have their defaults set to nova_metadata_*

Change-Id: I073da66f9e395bbb99b1c21701c808f252c3a6cb
2020-11-25 13:22:32 +00:00

19 lines
590 B
Django/Jinja

# {{ ansible_managed }}
# General
[DEFAULT]
debug = {{ debug }}
# Nova metadata service IP and port
nova_metadata_host = {{ internal_lb_vip_address }}
nova_metadata_port = {{ neutron_nova_metadata_port }}
nova_metadata_protocol = {{ neutron_nova_metadata_protocol }}
nova_metadata_insecure = {{ neutron_nova_metadata_insecure }}
# Metadata proxy shared secret
metadata_proxy_shared_secret = {{ nova_metadata_proxy_secret }}
# Workers and backlog requests
metadata_workers = {{ neutron_metadata_workers | default(neutron_api_threads) }}
metadata_backlog = {{ neutron_metadata_backlog }}