From ea5a7eef33b036f83875ebcf9374722ba170670a Mon Sep 17 00:00:00 2001 From: Antoni Segura Puimedon Date: Thu, 22 Sep 2016 16:51:36 +0200 Subject: [PATCH] opts: add missing auth options We use keystoneauth1 session option generation in order to fix the bug that some of these options were critically missing. Change-Id: I15cf0b843a73e34d11b6f6f4ce67211c81bf45ad Closes-bug: #1626229 Signed-off-by: Antoni Segura Puimedon --- kuryr/lib/opts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kuryr/lib/opts.py b/kuryr/lib/opts.py index 4e58ec72..34a7acf5 100644 --- a/kuryr/lib/opts.py +++ b/kuryr/lib/opts.py @@ -41,6 +41,7 @@ _kuryr_opts = [ def list_neutron_opts(): opt_list = copy.deepcopy(config.neutron_opts) opt_list.insert(0, ks_loading.get_auth_common_conf_options()[0]) + opt_list += ks_loading.get_session_conf_options() # NOTE(apuimedo): There are a lot of auth plugins, we just generate the # config options for a few common ones for name in ENABLED_AUTH_PLUGINS: