09cb07a7c9
Without these parameters ironic uses keystone_authtoken credentials. This is deprecated since Newton and can be removed at any moment. Also introduce "enabled" and "service_url" options for completeness. Change-Id: I652db2b74924789d1431a89af8e07a68699de697 Partial-Bug: #1661250
81 lines
2.7 KiB
Puppet
81 lines
2.7 KiB
Puppet
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# == Class: ironic::drivers::inspector
|
|
#
|
|
# Configure how Ironic talks to Ironic Inspector.
|
|
#
|
|
# [*enabled*]
|
|
# Whether or not to enable ironic-inspector support for inspection.
|
|
# This option does not affect new-style dynamic drivers and fake_inspector.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*service_url*]
|
|
# Ironic Inspector API endpoint. If not provided, the service catalog
|
|
# is used instead.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*auth_type*]
|
|
# The authentication plugin to use when connecting to ironic-inspector.
|
|
# Defaults to 'password'
|
|
#
|
|
# [*auth_url*]
|
|
# The address of the keystone api endpoint.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*project_name*]
|
|
# The Keystone project name.
|
|
# Defaults to 'services'
|
|
#
|
|
# [*username*]
|
|
# The admin username for ironic to connect to ironic-inspector.
|
|
# Defaults to 'ironic'.
|
|
#
|
|
# [*password*]
|
|
# The admin password for ironic to connect to ironic-inspector.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*user_domain_name*]
|
|
# The name of user's domain (required for Identity V3).
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*project_domain_name*]
|
|
# The name of project's domain (required for Identity V3).
|
|
# Defaults to $::os_service_default
|
|
#
|
|
class ironic::drivers::inspector (
|
|
$enabled = $::os_service_default,
|
|
$service_url = $::os_service_default,
|
|
$auth_type = 'password',
|
|
$auth_url = $::os_service_default,
|
|
$project_name = 'services',
|
|
$username = 'ironic',
|
|
$password = $::os_service_default,
|
|
$user_domain_name = $::os_service_default,
|
|
$project_domain_name = $::os_service_default,
|
|
) {
|
|
|
|
include ::ironic::deps
|
|
|
|
ironic_config {
|
|
'inspector/enabled': value => $enabled;
|
|
'inspector/service_url': value => $service_url;
|
|
'inspector/auth_type': value => $auth_type;
|
|
'inspector/username': value => $username;
|
|
'inspector/password': value => $password, secret => true;
|
|
'inspector/auth_url': value => $auth_url;
|
|
'inspector/project_name': value => $project_name;
|
|
'inspector/user_domain_name': value => $user_domain_name;
|
|
'inspector/project_domain_name': value => $project_domain_name;
|
|
}
|
|
}
|