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:
Takashi Kajinami 2023-09-07 22:47:00 +09:00
parent d103c36681
commit a05bcd4d15
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@
#
# [*auth_type*]
# Name of the auth type to load (string value)
# Defaults to 'v3password'
# Defaults to 'password'
#
# [*project_name*]
# (optional) Project name for connecting to Neutron network services in
@ -94,7 +94,7 @@
#
class nova::network::neutron (
$password,
$auth_type = 'v3password',
$auth_type = 'password',
$project_name = 'services',
$project_domain_name = 'Default',
$system_scope = $facts['os_service_default'],

View File

@ -3,7 +3,7 @@ require 'spec_helper'
describe 'nova::network::neutron' do
let :default_params do
{
:auth_type => 'v3password',
:auth_type => 'password',
:timeout => '30',
:project_name => 'services',
:project_domain_name => 'Default',