Revert "Fix default keystone auth_plugin for nova/neutron"
This reverts commit 271a2587a3
.
This patch seems to have caused the TripleO upgrades job to fail
in that running Nova instances stopped working after an upgrade.
Could be there is a missing relationship or something in Puppet or
perhaps something else keystone related but updating to this
as a default seems it could break things.
Related bug: #1580076
Change-Id: I783fba6cbd3ba292d6ed64be2dd0772e20a0896d
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
#
|
#
|
||||||
# [*neutron_auth_type*]
|
# [*neutron_auth_type*]
|
||||||
# Name of the auth type to load (string value)
|
# Name of the auth type to load (string value)
|
||||||
# Defaults to 'password'
|
# Defaults to 'v3password'
|
||||||
#
|
#
|
||||||
# [*neutron_url*]
|
# [*neutron_url*]
|
||||||
# (optional) URL for connecting to the Neutron networking service.
|
# (optional) URL for connecting to the Neutron networking service.
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
#
|
#
|
||||||
class nova::network::neutron (
|
class nova::network::neutron (
|
||||||
$neutron_password = false,
|
$neutron_password = false,
|
||||||
$neutron_auth_type = 'password',
|
$neutron_auth_type = 'v3password',
|
||||||
$neutron_project_name = 'services',
|
$neutron_project_name = 'services',
|
||||||
$neutron_project_domain_name = 'Default',
|
$neutron_project_domain_name = 'Default',
|
||||||
$neutron_username = 'neutron',
|
$neutron_username = 'neutron',
|
||||||
|
@@ -3,7 +3,7 @@ require 'spec_helper'
|
|||||||
describe 'nova::network::neutron' do
|
describe 'nova::network::neutron' do
|
||||||
|
|
||||||
let :default_params do
|
let :default_params do
|
||||||
{ :neutron_auth_type => 'password',
|
{ :neutron_auth_type => 'v3password',
|
||||||
:neutron_url => 'http://127.0.0.1:9696',
|
:neutron_url => 'http://127.0.0.1:9696',
|
||||||
:neutron_url_timeout => '30',
|
:neutron_url_timeout => '30',
|
||||||
:neutron_project_name => 'services',
|
:neutron_project_name => 'services',
|
||||||
|
Reference in New Issue
Block a user