From 79878d7f4db1307f9e3322d96ccc0af984577236 Mon Sep 17 00:00:00 2001 From: Riccardo Pittau Date: Thu, 2 Jul 2020 17:56:52 +0200 Subject: [PATCH] Prepare release notes for release 10.2 Change-Id: I35b5df4b7e3d519c8b567d5cf0d424aafee68fa9 --- .../accept-link-local-address-1fbb9cbdc3f980bb.yaml | 4 ++-- .../notes/http-basic-auth-fbe1da9669f5388c.yaml | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/releasenotes/notes/accept-link-local-address-1fbb9cbdc3f980bb.yaml b/releasenotes/notes/accept-link-local-address-1fbb9cbdc3f980bb.yaml index 2b8c7258e..ee60ce3bf 100644 --- a/releasenotes/notes/accept-link-local-address-1fbb9cbdc3f980bb.yaml +++ b/releasenotes/notes/accept-link-local-address-1fbb9cbdc3f980bb.yaml @@ -1,5 +1,5 @@ --- fixes: - | - Fixes the issue that IPv6 link local addresses are ignored during - interface validation which fails introspection. + Fixes an issue where IPv6 link local addresses are ignored during + interface validation, making introspection fail. diff --git a/releasenotes/notes/http-basic-auth-fbe1da9669f5388c.yaml b/releasenotes/notes/http-basic-auth-fbe1da9669f5388c.yaml index c0633a5c4..34e58253f 100644 --- a/releasenotes/notes/http-basic-auth-fbe1da9669f5388c.yaml +++ b/releasenotes/notes/http-basic-auth-fbe1da9669f5388c.yaml @@ -3,10 +3,11 @@ features: - | Enable Basic HTTP authentication middleware. - When the config option ``auth_strategy`` is set to ``http_basic`` then - non-public API calls require a valid HTTP Basic authentication header to be - set. The config option ``http_basic_auth_user_file`` defaults to - ``/etc/ironic-inspector/htpasswd`` and points to a file which supports the + When the config option ``[DEFAULT]auth_strategy`` is set to ``http_basic`` + then non-public API calls require a valid HTTP Basic authentication header + to be set. + The config option ``[DEFAULT]http_basic_auth_user_file`` defaults to + ``/etc/ironic-inspector/htpasswd`` and points to a file that supports the Apache htpasswd syntax[1]. This file is read for every request, so no service restart is required when changes are made. @@ -16,7 +17,7 @@ features: To try basic authentication, the following can be done: - * Set ``/etc/ironic-inspector/inspector.conf`` ``DEFAULT`` ``auth_strategy`` + * Set ``/etc/ironic-inspector/inspector.conf`` ``[DEFAULT]auth_strategy`` to ``http_basic`` * Populate the htpasswd file with entries, for example: ``htpasswd -nbB myName myPassword >> /etc/ironic-inspector/htpasswd``