28 lines
770 B
INI
28 lines
770 B
INI
[OVS]
|
|
tunnel_id_ranges = 1:1000
|
|
tenant_network_type = gre
|
|
enable_tunneling = True
|
|
local_ip = {{ local_ip }}
|
|
|
|
[database]
|
|
{% if database_host -%}
|
|
connection = mysql://{{ database_user }}:{{ database_password }}@{{ database_host }}/{{ database }}
|
|
{% else -%}
|
|
connection = sqlite:////var/lib/neutron/neutron.sqlite
|
|
{% endif -%}
|
|
|
|
[keystone_authtoken]
|
|
signing_dir = $state_path/keystone-signing
|
|
{% if service_host -%}
|
|
service_protocol = {{ service_protocol }}
|
|
service_host = {{ service_host }}
|
|
service_port = {{ service_port }}
|
|
auth_host = {{ auth_host }}
|
|
auth_port = {{ auth_port }}
|
|
auth_protocol = {{ auth_protocol }}
|
|
admin_tenant_name = {{ admin_tenant_name }}
|
|
admin_user = {{ admin_user }}
|
|
admin_password = {{ admin_password }}
|
|
signing_dir = /var/lib/cinder
|
|
{% endif -%}
|