Puppet Class: ironic::inspector::service_catalog

Defined in:
manifests/inspector/service_catalog.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::inspector::service_catalog

auth_type

The authentication plugin to use when connecting to the service catalog. 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-inspector to connect to the service catalog. Defaults to ‘ironic’.

password

The admin password for ironic-inspector to connect to the service catalog. 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 accessing Keystone catalog 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

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)


52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'manifests/inspector/service_catalog.pp', line 52

class ironic::inspector::service_catalog (
  $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,
) {

  include ironic::deps

  ironic_inspector_config {
    'service_catalog/auth_type':           value => $auth_type;
    'service_catalog/username':            value => $username;
    'service_catalog/password':            value => $password, secret => true;
    'service_catalog/auth_url':            value => $auth_url;
    'service_catalog/project_name':        value => $project_name;
    'service_catalog/user_domain_name':    value => $user_domain_name;
    'service_catalog/project_domain_name': value => $project_domain_name;
    'service_catalog/region_name':         value => $region_name;
    'service_catalog/endpoint_override':   value => $endpoint_override;
  }
}