Merge "nova: Omit auth options when notification is disabled"

This commit is contained in:
Zuul 2024-05-06 15:43:47 +00:00 committed by Gerrit Code Review
commit 1b582d17b3
2 changed files with 101 additions and 54 deletions

View File

@ -13,7 +13,9 @@
# == Class: ironic::nova # == Class: ironic::nova
# #
# [*password*] # [*password*]
# (Required) The admin password for ironic to connect to nova. # (Optional) The admin password for ironic to connect to nova.
# This is required when send_power_notifications is true.
# Defaults to undef
# #
# [*auth_type*] # [*auth_type*]
# (Optional) The authentication plugin to use when connecting to nova. # (Optional) The authentication plugin to use when connecting to nova.
@ -54,10 +56,10 @@
# #
# [*send_power_notifications*] # [*send_power_notifications*]
# (Optional) Enable the support for power state change callbacks to nova. # (Optional) Enable the support for power state change callbacks to nova.
# Defaults to $facts['os_service_default'] # Defaults to true
# #
class ironic::nova ( class ironic::nova (
$password, $password = undef,
$auth_type = 'password', $auth_type = 'password',
$auth_url = 'http://127.0.0.1:5000', $auth_url = 'http://127.0.0.1:5000',
$project_name = 'services', $project_name = 'services',
@ -67,11 +69,20 @@ class ironic::nova (
$system_scope = $facts['os_service_default'], $system_scope = $facts['os_service_default'],
$region_name = $facts['os_service_default'], $region_name = $facts['os_service_default'],
$endpoint_override = $facts['os_service_default'], $endpoint_override = $facts['os_service_default'],
$send_power_notifications = $facts['os_service_default'], Boolean $send_power_notifications = true,
) { ) {
include ironic::deps include ironic::deps
ironic_config {
'nova/send_power_notifications': value => $send_power_notifications;
}
if $send_power_notifications {
if password == undef {
fail('The password parameter is required when send_power_notifications is true')
}
if is_service_default($system_scope) { if is_service_default($system_scope) {
$project_name_real = $project_name $project_name_real = $project_name
$project_domain_name_real = $project_domain_name $project_domain_name_real = $project_domain_name
@ -91,6 +102,19 @@ class ironic::nova (
'nova/system_scope': value => $system_scope; 'nova/system_scope': value => $system_scope;
'nova/region_name': value => $region_name; 'nova/region_name': value => $region_name;
'nova/endpoint_override': value => $endpoint_override; 'nova/endpoint_override': value => $endpoint_override;
'nova/send_power_notifications': value => $send_power_notifications; }
} else {
ironic_config {
'nova/auth_type': ensure => absent;
'nova/username': ensure => absent;
'nova/password': ensure => absent;
'nova/auth_url': ensure => absent;
'nova/project_name': ensure => absent;
'nova/user_domain_name': ensure => absent;
'nova/project_domain_name': ensure => absent;
'nova/system_scope': ensure => absent;
'nova/region_name': ensure => absent;
'nova/endpoint_override': ensure => absent;
}
} }
} }

View File

@ -17,11 +17,12 @@ require 'spec_helper'
describe 'ironic::nova' do describe 'ironic::nova' do
shared_examples_for 'ironic nova configuration' do
context 'with defaults' do
let :params do let :params do
{ :password => 'secret' } { :password => 'secret' }
end end
shared_examples_for 'ironic nova configuration' do
it 'configures ironic.conf' do it 'configures ironic.conf' do
is_expected.to contain_ironic_config('nova/auth_type').with_value('password') is_expected.to contain_ironic_config('nova/auth_type').with_value('password')
is_expected.to contain_ironic_config('nova/auth_url').with_value('http://127.0.0.1:5000') is_expected.to contain_ironic_config('nova/auth_url').with_value('http://127.0.0.1:5000')
@ -33,12 +34,14 @@ describe 'ironic::nova' do
is_expected.to contain_ironic_config('nova/system_scope').with_value('<SERVICE DEFAULT>') is_expected.to contain_ironic_config('nova/system_scope').with_value('<SERVICE DEFAULT>')
is_expected.to contain_ironic_config('nova/region_name').with_value('<SERVICE DEFAULT>') is_expected.to contain_ironic_config('nova/region_name').with_value('<SERVICE DEFAULT>')
is_expected.to contain_ironic_config('nova/endpoint_override').with_value('<SERVICE DEFAULT>') is_expected.to contain_ironic_config('nova/endpoint_override').with_value('<SERVICE DEFAULT>')
is_expected.to contain_ironic_config('nova/send_power_notifications').with_value('<SERVICE DEFAULT>') is_expected.to contain_ironic_config('nova/send_power_notifications').with_value(true)
end
end end
context 'when overriding parameters' do context 'when overriding parameters' do
before :each do let :params do
params.merge!( {
:password => 'secret',
:auth_type => 'noauth', :auth_type => 'noauth',
:auth_url => 'http://example.com', :auth_url => 'http://example.com',
:project_name => 'project1', :project_name => 'project1',
@ -47,8 +50,8 @@ describe 'ironic::nova' do
:project_domain_name => 'NonDefault', :project_domain_name => 'NonDefault',
:region_name => 'regionTwo', :region_name => 'regionTwo',
:endpoint_override => 'http://example2.com', :endpoint_override => 'http://example2.com',
:send_power_notifications => false, :send_power_notifications => true,
) }
end end
it 'should replace default parameter with new value' do it 'should replace default parameter with new value' do
@ -66,10 +69,11 @@ describe 'ironic::nova' do
end end
context 'when system_scope is set' do context 'when system_scope is set' do
before :each do let :params do
params.merge!( {
:password => 'secret',
:system_scope => 'all', :system_scope => 'all',
) }
end end
it 'configures system-scoped credential' do it 'configures system-scoped credential' do
@ -78,6 +82,25 @@ describe 'ironic::nova' do
is_expected.to contain_ironic_config('nova/system_scope').with_value('all') is_expected.to contain_ironic_config('nova/system_scope').with_value('all')
end end
end end
context 'when send_power_notifications is false' do
let :params do
{ :send_power_notifications => false }
end
it 'configures only send_power_notifications' do
is_expected.to contain_ironic_config('nova/auth_type').with_ensure('absent')
is_expected.to contain_ironic_config('nova/auth_url').with_ensure('absent')
is_expected.to contain_ironic_config('nova/project_name').with_ensure('absent')
is_expected.to contain_ironic_config('nova/username').with_ensure('absent')
is_expected.to contain_ironic_config('nova/user_domain_name').with_ensure('absent')
is_expected.to contain_ironic_config('nova/project_domain_name').with_ensure('absent')
is_expected.to contain_ironic_config('nova/region_name').with_ensure('absent')
is_expected.to contain_ironic_config('nova/system_scope').with_ensure('absent')
is_expected.to contain_ironic_config('nova/endpoint_override').with_ensure('absent')
is_expected.to contain_ironic_config('nova/send_power_notifications').with_value(false)
end
end
end end
on_supported_os({ on_supported_os({