2e4e60503a
We're duplicating code to build the keystone URLs in nearly every config, where we've already done it in group_vars. Replace the redundancy with a variable that does the same thing. Change-Id: I207d77870e2535c1cdcbc5eaf704f0448ac85a7a
63 lines
1.9 KiB
Django/Jinja
63 lines
1.9 KiB
Django/Jinja
[DEFAULT]
|
|
compute_driver = compute_hyperv.driver.HyperVDriver
|
|
instances_path = C:\OpenStack\Instances
|
|
use_cow_images = true
|
|
flat_injected = true
|
|
mkisofs_cmd = C:\Program Files\Cloudbase Solutions\OpenStack\Nova\bin\mkisofs.exe
|
|
debug = {{ openstack_logging_debug }}
|
|
allow_resize_to_same_host = true
|
|
running_deleted_instance_action = reap
|
|
running_deleted_instance_poll_interval = 120
|
|
resize_confirm_window = 5
|
|
resume_guests_state_on_host_boot = true
|
|
rpc_response_timeout = 1800
|
|
lock_path = C:\OpenStack\Log
|
|
vif_plugging_is_fatal = false
|
|
vif_plugging_timeout = 60
|
|
rpc_backend = rabbit
|
|
log_dir = C:\OpenStack\Log
|
|
log_file = nova-compute.log
|
|
force_config_drive = True
|
|
transport_url = {{ rpc_transport_url }}
|
|
|
|
[placement]
|
|
auth_type = password
|
|
auth_url = {{ keystone_admin_url }}/v3
|
|
project_name = service
|
|
username = {{ placement_keystone_user }}
|
|
password = {{ placement_keystone_password }}
|
|
project_domain_name = {{ default_project_domain_name }}
|
|
user_domain_name = {{ default_user_domain_name }}
|
|
os_region_name = {{ openstack_region_name }}
|
|
|
|
[glance]
|
|
api_servers = {{ internal_protocol }}://{{ glance_internal_fqdn }}:{{ glance_api_port }}
|
|
|
|
|
|
[hyperv]
|
|
vswitch_name = {{ vswitch_name }}
|
|
limit_cpu_features = false
|
|
config_drive_inject_password = true
|
|
qemu_img_cmd = C:\Program Files\Cloudbase Solutions\OpenStack\Nova\bin\qemu-img.exe
|
|
config_drive_cdrom = true
|
|
dynamic_memory_ratio = 1
|
|
enable_instance_metrics_collection = false
|
|
|
|
[rdp]
|
|
enabled = true
|
|
html5_proxy_base_url = {{ public_protocol }}://{{ kolla_internal_vip_address }}:{{ rdp_port }}
|
|
|
|
[neutron]
|
|
url = {{ internal_protocol }}://{{ neutron_internal_fqdn }}:{{ neutron_server_port }}
|
|
auth_strategy = keystone
|
|
project_domain_name = default
|
|
project_name = service
|
|
user_domain_name = default
|
|
username = {{ neutron_keystone_user }}
|
|
password = {{ neutron_keystone_password }}
|
|
auth_url = {{ keystone_admin_url }}/v3
|
|
auth_type = v3password
|
|
|
|
[oslo_messaging_notifications]
|
|
transport_url = {{ notify_transport_url }}
|