9e89af6f59
Bifrost in Yoga will change the default TFTP and HTTP boot directories to reside under /var/lib/ironic/. We already avoid the cross-filesystem linking issue that the patch aims to address, by overriding tftp_master_path. Avoid this breaking us by reverting to the previous defaults. Needed-By: https://review.opendev.org/c/openstack/bifrost/+/822743 Change-Id: Idc54c78c618ae90b4d933c2c401bb1789b0abd36
29 lines
1.1 KiB
Django/Jinja
29 lines
1.1 KiB
Django/Jinja
---
|
|
# Ironic log directory.
|
|
ironic_log_dir: "/var/log/kolla/ironic"
|
|
|
|
# Ironic inspector log directory.
|
|
inspector_log_dir: "/var/log/kolla/ironic-inspector"
|
|
|
|
# Ironic Python Agent deploy logs directory
|
|
ironic_agent_deploy_logs_local_path: "/var/log/kolla/ironic/deploy"
|
|
|
|
# Nginx log directory.
|
|
nginx_log_dir: "/var/log/kolla/nginx"
|
|
|
|
ansible_python_interpreter: /var/lib/kolla/venv/bin/python
|
|
network_interface: "{{ bifrost_network_interface }}"
|
|
|
|
# Ironic creates hardlinks between the TFTP master image store and the
|
|
# HTTP root path when iPXE is enabled. With Docker volumes used for these
|
|
# locations we run into https://bugs.launchpad.net/ironic/+bug/1507894
|
|
# during deployment. If we use a directory under /httpboot to store the
|
|
# master images this issue is avoided.
|
|
ironic_tftp_master_path: "/httpboot/master_images"
|
|
|
|
# Bifrost in Yoga changed the default TFTP and HTTP boot directories to reside
|
|
# under /var/lib/ironic/. Avoid this breaking us by reverting to the previous
|
|
# defaults. https://review.opendev.org/c/openstack/bifrost/+/822743
|
|
tftp_boot_folder: "/tftpboot"
|
|
http_boot_folder: "/httpboot"
|