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 <antonisp@celebdor.com>
This commit is contained in:
Antoni Segura Puimedon 2016-09-22 16:51:36 +02:00
parent dbe2284ce6
commit ea5a7eef33
No known key found for this signature in database
GPG Key ID: 2329618D2967720A
1 changed files with 1 additions and 0 deletions

View File

@ -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: