inspector: Prevent use of noauth in multi-region setup

In a multi-region environment without a local keystone, we should still
use authentication.

Change-Id: I9df0ddf6e0d56f0817256b07ae0a0a7021209663
This commit is contained in:
Mark Goddard 2022-07-06 15:06:16 +01:00
parent c2261e5652
commit 3d65a160d9
2 changed files with 7 additions and 1 deletions

View File

@ -2,7 +2,7 @@
debug = {{ ironic_logging_debug }}
log_dir = /var/log/kolla/ironic-inspector
{% if not enable_keystone | bool %}
{% if not ironic_enable_keystone_integration | bool %}
auth_strategy = noauth
{% endif %}
listen_address = {{ api_interface_address }}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue where Ironic Inspector could be configured without
authentication in a multi-region environment in a region without a local
Keystone service.