f09faa43d1
Libvirt debug logs can grow very large, particularly on Ubuntu (we have seen up to 1.1GB). Disable libvirt debug logging using variable nova_libvirt_logging_debug which was added to Kolla Ansible during the Wallaby cycle (see change I90bfd1b300ad3202ea4d139fda6d6beb44c5820f) and backported to Victoria and Ussuri. Change-Id: Ic047e80aa382148b009b1c03581b417d17ec2598
25 lines
821 B
Django/Jinja
25 lines
821 B
Django/Jinja
---
|
|
# Use HTTPS opendev quay.io registry proxy.
|
|
docker_registry_insecure: no
|
|
|
|
# Most development environments will use nested virtualisation, and we can't
|
|
# guarantee that nested KVM support is available. Use QEMU as a lowest common
|
|
# denominator.
|
|
nova_compute_virt_type: qemu
|
|
|
|
# Reduce the control plane's memory footprint by limiting the number of worker
|
|
# processes to one per-service.
|
|
openstack_service_workers: "1"
|
|
openstack_service_rpc_workers: "1"
|
|
|
|
# Reduce size of libvirt logs when OpenStack debug logging is enabled
|
|
nova_libvirt_logging_debug: False
|
|
|
|
{% if tls_enabled %}
|
|
# TLS
|
|
kolla_copy_ca_into_containers: "yes"
|
|
kolla_enable_tls_backend: "yes"
|
|
openstack_cacert: "/etc/pki/tls/certs/ca-bundle.crt"
|
|
kolla_admin_openrc_cacert: "{% raw %}{{ '{{' }} kolla_certificates_dir }}{% endraw %}/ca/root.crt"
|
|
{% endif %}
|