kayobe/ansible/roles/kolla-openstack/vars/main.yml
Mark Goddard 428ef10fa4 Use merge_configs and merge_yaml to generate Kolla custom config
This patch adds new functionality - merging base & environment specific
kolla config. This allows you to place common settings in the base
configuration and only keep environment specific settings in the
environment directories.

Change-Id: Id4588f4529a4522e68e22ce58711cb927fa68a9d
Story: 2002009
Task: 42903
2023-05-30 16:47:14 +00:00

17 lines
805 B
YAML

---
# An internal variable used for cleaning files from the generated config
# directory. Should not be exposed as we may wish to change the cleanup
# mechanism to something more robust.
_kolla_openstack_custom_config_cleanup_ignore_globs:
- glob: ironic/ironic-agent.initramfs
enabled: "{{ kolla_enable_ironic | bool }}"
- glob: ironic/ironic-agent.kernel
enabled: "{{ kolla_enable_ironic | bool }}"
- glob: nova/nova-libvirt/server*.pem
enabled: "{{ kolla_enable_nova | bool and kolla_enable_nova_libvirt_container | bool and kolla_libvirt_tls | bool }}"
- glob: nova/nova-libvirt/client*.pem
enabled: "{{ kolla_enable_nova | bool and kolla_libvirt_tls | bool }}"
- glob: nova/nova-libvirt/cacert.pem
enabled: "{{ kolla_enable_nova | bool and kolla_libvirt_tls | bool }}"