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
This commit is contained in:
Dmitriy Rabotyagov 2020-10-28 16:26:30 +02:00 committed by Dmitriy Rabotyagov
parent 6b39e9c85b
commit e43313af85
2 changed files with 8 additions and 5 deletions

View File

@ -423,12 +423,15 @@ neutron_dnsmasq_force_metadata: False
# neutron_metadata_workers: 16
neutron_metadata_backlog: 4096
# The port used by neutron to access the nova metadata service.
neutron_nova_metadata_port: "{{ nova_metadata_port | default(8775) }}"
# The protocol used by neutron to access the nova metadata service.
nova_metadata_protocol: http
neutron_nova_metadata_protocol: "{{ nova_metadata_protocol | default('http') }}"
# If the nova_metadata_protocol is using a self-signed cert, then
# this flag should be set to a boolean True.
nova_metadata_insecure: False
neutron_nova_metadata_insecure: "{{ nova_metadata_insecure | default(False) }}"
###
### VPNaaS Configuration

View File

@ -6,9 +6,9 @@ debug = {{ debug }}
# Nova metadata service IP and port
nova_metadata_host = {{ internal_lb_vip_address }}
nova_metadata_port = {{ nova_metadata_port }}
nova_metadata_protocol = {{ nova_metadata_protocol }}
nova_metadata_insecure = {{ nova_metadata_insecure }}
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 }}