4809462f4e
Change-Id: I173669bdf92b1f2ea98907ba16808ca3c914944c
27 lines
718 B
Django/Jinja
27 lines
718 B
Django/Jinja
{% if libvirt_tls | bool %}
|
||
listen_tls = 1
|
||
listen_tcp = 0
|
||
tls_port = "{{ nova_libvirt_port }}"
|
||
key_file = "/etc/pki/libvirt/private/serverkey.pem"
|
||
cert_file = "/etc/pki/libvirt/servercert.pem"
|
||
ca_file = "/etc/pki/CA/cacert.pem"
|
||
{% else %}
|
||
listen_tcp = 1
|
||
listen_tls = 0
|
||
auth_tcp = "none"
|
||
tcp_port = "{{ nova_libvirt_port }}"
|
||
ca_file = ""
|
||
{% endif %}
|
||
{% if nova_logging_debug | bool %}
|
||
log_level = 1
|
||
log_outputs = "1:file:/var/log/kolla/libvirt/libvirtd.log"
|
||
{% else %}
|
||
log_level = 3
|
||
log_outputs = "3:file:/var/log/kolla/libvirt/libvirtd.log"
|
||
{% endif %}
|
||
listen_addr = "{{ migration_interface_address }}"
|
||
{% if enable_neutron_mlnx | bool %}
|
||
# Enable read-only access to libvirt socket
|
||
auth_unix_ro = "none"
|
||
{% endif %}
|