From 9b3b3cab50fedfd72e219039756b98761c17697a Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 11 Sep 2025 00:16:44 +0900 Subject: [PATCH] Fix missing session options in [service_credentials] These options are loaded when building HTTP client, but have not been added to the generated config file. Change-Id: Iba90bf0b1e46af23171047da1fe288c782e39f46 Signed-off-by: Takashi Kajinami --- ceilometer/opts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ceilometer/opts.py b/ceilometer/opts.py index 7c52e394d2..a185212afd 100644 --- a/ceilometer/opts.py +++ b/ceilometer/opts.py @@ -113,6 +113,7 @@ def list_keystoneauth_opts(): # for the password plugin that handles keystone v2 and v3 API # with discovery. But other options are possible. return [('service_credentials', itertools.chain( + loading.get_session_conf_options(), loading.get_auth_common_conf_options(), loading.get_auth_plugin_conf_options('password'), ceilometer.keystone_client.CLI_OPTS