Use password auth_type for neutron
We intentionally replaced it by v3password to fix breakage in TripleO but that would no longer required because - current keystone no longer provide v2 endpoint - TripleO is being deprecated. Closes-Bug: #1853920 Change-Id: I6671310d897f411862637f10ebbfb8befefc32eb
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
#
|
#
|
||||||
# [*auth_type*]
|
# [*auth_type*]
|
||||||
# Name of the auth type to load (string value)
|
# Name of the auth type to load (string value)
|
||||||
# Defaults to 'v3password'
|
# Defaults to 'password'
|
||||||
#
|
#
|
||||||
# [*project_name*]
|
# [*project_name*]
|
||||||
# (optional) Project name for connecting to Neutron network services in
|
# (optional) Project name for connecting to Neutron network services in
|
||||||
@@ -94,7 +94,7 @@
|
|||||||
#
|
#
|
||||||
class nova::network::neutron (
|
class nova::network::neutron (
|
||||||
$password,
|
$password,
|
||||||
$auth_type = 'v3password',
|
$auth_type = 'password',
|
||||||
$project_name = 'services',
|
$project_name = 'services',
|
||||||
$project_domain_name = 'Default',
|
$project_domain_name = 'Default',
|
||||||
$system_scope = $facts['os_service_default'],
|
$system_scope = $facts['os_service_default'],
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
:auth_type => 'v3password',
|
:auth_type => 'password',
|
||||||
:timeout => '30',
|
:timeout => '30',
|
||||||
:project_name => 'services',
|
:project_name => 'services',
|
||||||
:project_domain_name => 'Default',
|
:project_domain_name => 'Default',
|
||||||
|
|||||||
Reference in New Issue
Block a user