58ce2b54ea
Implement an ansible role that adds Hyper-V as a compute node for OpenStack using Kolla. This will install and configure the Nova Compute service, the Hyper-V Neutron agent and FreeRDP-WebConnect. https://docs.openstack.org/ocata/config-reference/compute/hypervisor-hyper-v.html Change-Id: I601835b0769c5ff173a980a05a752391ae8cc82f Implements: blueprint hyperv-ansible-role Co-Authored-By: Alessandro Pilotti <apilotti@cloudbasesolutions.com>
19 lines
638 B
Django/Jinja
19 lines
638 B
Django/Jinja
[DEFAULT]
|
|
debug = {{ openstack_logging_debug }}
|
|
control_exchange = neutron
|
|
rpc_backend = rabbit
|
|
log_dir = C:\OpenStack\Log
|
|
log_file = neutron-hyperv-agent.log
|
|
transport_url = rabbit://{% for host in groups['rabbitmq'] %}{{ rabbitmq_user }}:{{ rabbitmq_password }}@{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ rabbitmq_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
|
|
|
|
[AGENT]
|
|
polling_interval = 2
|
|
physical_network_vswitch_mappings = *:{{ vswitch_name }}
|
|
enable_metrics_collection = false
|
|
enable_qos_extension = false
|
|
|
|
[SECURITYGROUP]
|
|
firewall_driver = hyperv
|
|
enable_security_group = true
|