Puppet Class: ironic::drivers::inspector

Defined in:
manifests/drivers/inspector.pp

Overview

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.

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 ‘Default’

project_domain_name

The name of project’s domain (required for Identity V3). Defaults to ‘Default’

region_name

(optional) Region name for connecting to ironic-inspector in admin context through the OpenStack Identity service. Defaults to $::os_service_default

endpoint_override

The endpoint URL for requests for this client Defaults to $::os_service_default

callback_endpoint_override

The endpoint URL to use for ramdisk callback in case of managed boot. Defaults to $::os_service_default

power_off

Whether to power off a node after inspection in case of managed boot. Defaults to $::os_service_default

extra_kernel_params

Extra kernel parameters to pass in case of managed boot. Defaults to $::os_service_default

DEPRECATED PARAMETERS

service_url

Has no effect, use endpoint_override. Defaults to undef

Parameters:

  • auth_type (Any) (defaults to: 'password')
  • auth_url (Any) (defaults to: $::os_service_default)
  • project_name (Any) (defaults to: 'services')
  • username (Any) (defaults to: 'ironic')
  • password (Any) (defaults to: $::os_service_default)
  • user_domain_name (Any) (defaults to: 'Default')
  • project_domain_name (Any) (defaults to: 'Default')
  • region_name (Any) (defaults to: $::os_service_default)
  • endpoint_override (Any) (defaults to: $::os_service_default)
  • callback_endpoint_override (Any) (defaults to: $::os_service_default)
  • power_off (Any) (defaults to: $::os_service_default)
  • extra_kernel_params (Any) (defaults to: $::os_service_default)
  • service_url (Any) (defaults to: undef)


72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'manifests/drivers/inspector.pp', line 72

class ironic::drivers::inspector (
  $auth_type                  = 'password',
  $auth_url                   = $::os_service_default,
  $project_name               = 'services',
  $username                   = 'ironic',
  $password                   = $::os_service_default,
  $user_domain_name           = 'Default',
  $project_domain_name        = 'Default',
  $region_name                = $::os_service_default,
  $endpoint_override          = $::os_service_default,
  $callback_endpoint_override = $::os_service_default,
  $power_off                  = $::os_service_default,
  $extra_kernel_params        = $::os_service_default,
  # DEPRECATED PARAMETERS
  $service_url                = undef,
) {

  include ironic::deps

  if $service_url {
    warning("The ironic::drivers::inspector::service_url parameter is deprecated and \
has no effect. Please use ironic::drivers::inspector::endpoint_override instead.")
  }

  ironic_config {
    '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;
    'inspector/region_name':                value => $region_name;
    'inspector/endpoint_override':          value => $endpoint_override;
    'inspector/callback_endpoint_override': value => $callback_endpoint_override;
    'inspector/power_off':                  value => $power_off;
    'inspector/extra_kernel_params':        value => $extra_kernel_params;
  }
}