1fc58e74d0
Follow up fix for Ia7e923dddb77ff6db3c9160af931354a2b305e8d, which broke the cephadm jobs. Change-Id: Ieb39b41a6f493bd00c687610ba043a1b4e5945e7 Related-Bug: #1821696
61 lines
2.0 KiB
Django/Jinja
61 lines
2.0 KiB
Django/Jinja
{
|
|
"command": "/usr/sbin/libvirtd --listen",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/libvirtd.conf",
|
|
"dest": "/etc/libvirt/libvirtd.conf",
|
|
"owner": "root",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/qemu.conf",
|
|
"dest": "/etc/libvirt/qemu.conf",
|
|
"owner": "root",
|
|
"perm": "0600"
|
|
}{% if libvirt_tls | bool %},
|
|
{
|
|
"source": "{{ container_config_directory }}/serverkey.pem",
|
|
"dest": "/etc/pki/libvirt/private/serverkey.pem",
|
|
"owner": "root",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/servercert.pem",
|
|
"dest": "/etc/pki/libvirt/servercert.pem",
|
|
"owner": "root",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/clientkey.pem",
|
|
"dest": "/etc/pki/libvirt/private/clientkey.pem",
|
|
"owner": "root",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/clientcert.pem",
|
|
"dest": "/etc/pki/libvirt/clientcert.pem",
|
|
"owner": "root",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/cacert.pem",
|
|
"dest": "/etc/pki/CA/cacert.pem",
|
|
"owner": "root",
|
|
"perm": "0600"
|
|
}{% endif %}{% if nova_backend == "rbd" or cinder_backend_ceph | bool %},
|
|
{
|
|
"source": "{{ container_config_directory }}/secrets",
|
|
"dest": "/etc/libvirt/secrets",
|
|
"owner": "root",
|
|
"perm": "0600",
|
|
"merge": true
|
|
}{% endif %}{% if nova_backend == "rbd" %},
|
|
{
|
|
"source": "{{ container_config_directory }}/ceph.conf",
|
|
"dest": "/etc/ceph/ceph.conf",
|
|
"owner": "nova",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
]
|
|
}
|