f131505576
* adds a service_plugin called segments to enable routed provider networks * adds a nova placement api section and inclusion of that section to neutron.conf * routed provider networks can be used for setups with and without charm-neutron-gateway - in both cases there should be a dhcp agent per segment which can be achieved via charm-neutron-openvswitch configuration option enable-local-dhcp-and-metadata in case of a setup without charm-neutron-gateway Change-Id: I78222b567c72c03ab2d861836172032d4d9a0b3f Closes-Bug: 1743743
22 lines
560 B
Plaintext
22 lines
560 B
Plaintext
[placement]
|
|
{% if auth_host -%}
|
|
auth_url = {{ auth_protocol }}://{{ auth_host }}:{{ auth_port }}
|
|
auth_type = password
|
|
{% if api_version == "3" -%}
|
|
project_domain_name = {{ admin_domain_name }}
|
|
user_domain_name = {{ admin_domain_name }}
|
|
{% else -%}
|
|
project_domain_name = default
|
|
user_domain_name = default
|
|
{% endif -%}
|
|
project_name = {{ admin_tenant_name }}
|
|
username = {{ admin_user }}
|
|
password = {{ admin_password }}
|
|
{% endif -%}
|
|
{% if region -%}
|
|
os_region_name = {{ region }}
|
|
{% endif -%}
|
|
{% if use_internal_endpoints -%}
|
|
os_interface = internal
|
|
{% endif -%}
|