Puppet Class: profile::openstack::base::heat
- Defined in:
- modules/profile/manifests/openstack/base/heat.pp
Overview
SPDX-License-Identifier: Apache-2.0
Provision the Openstack Heat service
As with all OpenStack services, actually installing the service
requres some by-hand steps after the packages and config
are set up. Steps are fully enumerated at
https://docs.openstack.org/heat/latest/install/install-debian.html
In brief, the post-puppet steps are:
- Create database, add accounts and access (the specific access details
are added to /etc/heat by puppet)
- Create the 'heat' service domain
- Create the 'heat' service user and add it to the 'heat' domain
- Create service and endpoints in Keystone
- Create heat_stack_user and heat_stack_owner roles
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'modules/profile/manifests/openstack/base/heat.pp', line 19
class profile::openstack::base::heat(
String $version = lookup('profile::openstack::base::version'),
Boolean $active = lookup('profile::openstack::base::heat::active'),
Array[OpenStack::ControlNode] $openstack_control_nodes = lookup('profile::openstack::base::openstack_control_nodes'),
Array[Stdlib::Fqdn] $rabbitmq_nodes = lookup('profile::openstack::base::rabbitmq_nodes'),
Stdlib::Fqdn $keystone_fqdn = lookup('profile::openstack::base::keystone_api_fqdn'),
String $region = lookup('profile::openstack::base::region'),
String $db_user = lookup('profile::openstack::base::heat::db_user'),
String $db_name = lookup('profile::openstack::base::heat::db_name'),
String $db_pass = lookup('profile::openstack::base::heat::db_pass'),
String $ldap_user_pass = lookup('profile::openstack::base::heat::service_user_pass'),
String $domain_admin_pass = lookup('profile::openstack::base::heat::domain_admin_pass'),
Stdlib::Fqdn $db_host = lookup('profile::openstack::base::heat::db_host'),
Stdlib::Port $api_bind_port = lookup('profile::openstack::base::heat::api_bind_port'),
Stdlib::Port $cfn_api_bind_port = lookup('profile::openstack::base::heat::api_bind_port'),
String $rabbit_user = lookup('profile::openstack::base::heat::rabbit_user'),
String $rabbit_pass = lookup('profile::openstack::base::heat::rabbit_pass'),
String[32] $auth_encryption_key = lookup('profile::openstack::base::heat::auth_encryption_key'),
Array[Stdlib::Fqdn] $haproxy_nodes = lookup('profile::openstack::base::haproxy_nodes'),
Boolean $enforce_policy_scope = lookup('profile::openstack::base::keystone::enforce_policy_scope'),
Boolean $enforce_new_policy_defaults = lookup('profile::openstack::base::keystone::enforce_new_policy_defaults'),
) {
class { '::openstack::heat::service':
version => $version,
memcached_nodes => $openstack_control_nodes.map |$node| { $node['cloud_private_fqdn'] },
rabbitmq_nodes => $rabbitmq_nodes,
keystone_fqdn => $keystone_fqdn,
db_user => $db_user,
db_pass => $db_pass,
db_name => $db_name,
db_host => $db_host,
api_bind_port => $api_bind_port,
cfn_api_bind_port => $cfn_api_bind_port,
ldap_user_pass => $ldap_user_pass,
rabbit_user => $rabbit_user,
rabbit_pass => $rabbit_pass,
auth_encryption_key => $auth_encryption_key,
region => $region,
domain_admin_pass => $domain_admin_pass,
enforce_policy_scope => $enforce_policy_scope,
enforce_new_policy_defaults => $enforce_new_policy_defaults,
}
firewall::service { 'heat-api-backend':
proto => 'tcp',
port => [$api_bind_port, $cfn_api_bind_port],
srange => $haproxy_nodes,
}
openstack::db::project_grants { 'heat':
access_hosts => $haproxy_nodes,
db_name => $db_name,
db_user => $db_user,
db_pass => $db_pass,
require => Package['heat-api'],
}
}
|