Skip to content
Snippets Groups Projects
Commit 4d40c9e6 authored by Will Szumski's avatar Will Szumski
Browse files

Adds feature flag for ironic-inspector in bifrost

This is useful for backwards compatability.

Depends-On: https://review.opendev.org/c/openstack/kolla/+/909865
Change-Id: Ib2936580db5e7ab3479722bc353c39063010b5f2
parent e513ddd9
No related branches found
No related tags found
No related merge requests found
......@@ -11,3 +11,10 @@ bifrost_deploy_image_full: "{{ bifrost_deploy_image }}:{{ bifrost_deploy_tag }}"
bifrost_deploy_container_proxy: "{{ container_proxy }}"
bifrost_deploy_verbosity: "-vvvv"
# Whether to enable the legacy ironic-inspector service
# NOTE(wszumski): Bifrost plans to remove this option once the native in-band
# inspection reaches feature parity. Please see:
# https://bugs.launchpad.net/kolla/+bug/2054685 which contains links for
# tracking the progress.
bifrost_enable_ironic_inspector: true
......@@ -33,3 +33,6 @@ generate_tls: true
# NOTE: Needs to be world-readable, writeable by root, and persistent, which
# the default /etc/bifrost is not.
tls_root: "/etc/bifrost-certs"
# Whether to enable the legacy ironic-inspector service.
enable_inspector: "{{ bifrost_enable_ironic_inspector }}"
---
features:
- |
Exposes a flag, ``bifrost_enable_ironic_inspector``, to enable
ironic-inspector in Bifrost. This option defaults to ``True`` as it can be
useful for backwards compatability. It is still possible to use native
in-band inspection when Ironic Inspector is enabled by setting
``inspect_interface`` to ``agent``. Please see the Ironic documentation for
more details.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment