Puppet Class: contrail::ctrl_details

Defined in:
manifests/ctrl_details.pp

Overview

Class: contrail::ctrl_details

Install the /etc/contrail/ctrl-details file

Parameters:

keystone_service_token

(optional) Keystone service token Defaults to ”

keystone_auth_protocol

(optional) Keystone authentication protocol Defaults to ‘http’

keystone_admin_password

(optional) Keystone admin password Defaults to ‘password’

openstack_internal_vip

(optional) Openstack internal VIP Defaults to ‘127.0.0.1’

openstack_external_vip

(optional) Openstack external VIP Defaults to ‘127.0.0.1’

amqp_ip

(optional) IP of the AMQP broket Defaults to ‘127.0.0.1’

Parameters:

  • keystone_service_token (Any) (defaults to: '')
  • keystone_auth_protocol (Any) (defaults to: 'http')
  • keystone_admin_password (Any) (defaults to: 'password')
  • openstack_internal_vip (Any) (defaults to: '127.0.0.1')
  • openstack_external_vip (Any) (defaults to: '127.0.0.1')
  • amqp_ip (Any) (defaults to: '127.0.0.1')


31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'manifests/ctrl_details.pp', line 31

class contrail::ctrl_details (
  $keystone_service_token  = '',
  $keystone_auth_protocol  = 'http',
  $keystone_admin_password = 'password',
  $openstack_internal_vip  = '127.0.0.1',
  $openstack_external_vip  = '127.0.0.1',
  $amqp_ip                 = '127.0.0.1',
) {

  file { '/etc/contrail/ctrl-details' :
    ensure  => file,
    content => template('contrail/ctrl-details.erb'),
  }

}