8fd4c8fae6
The workaround is no longer required since puppetlabs-apache v6.5.0[1]. This also removes the apache class from service manifests because we should use our own apache manifests to manage the apache service. [1] https://github.com/puppetlabs/puppetlabs-apache/commit/f4e8c1d2f Change-Id: I6818cd31cc5d878d141a88d977ea956a4717c17f
80 lines
2.9 KiB
Puppet
80 lines
2.9 KiB
Puppet
class openstack_integration::mistral {
|
|
|
|
include openstack_integration::config
|
|
include openstack_integration::params
|
|
|
|
openstack_integration::mq_user { 'mistral':
|
|
password => 'an_even_bigger_secret',
|
|
before => Anchor['mistral::service::begin'],
|
|
}
|
|
if $::openstack_integration::config::ssl {
|
|
openstack_integration::ssl_key { 'mistral':
|
|
notify => Service['httpd'],
|
|
require => Package['mistral-common'],
|
|
}
|
|
Exec['update-ca-certificates'] ~> Service['httpd']
|
|
}
|
|
class { 'mistral::keystone::authtoken':
|
|
password => 'a_big_secret',
|
|
user_domain_name => 'Default',
|
|
project_domain_name => 'Default',
|
|
auth_url => $::openstack_integration::config::keystone_admin_uri,
|
|
www_authenticate_uri => $::openstack_integration::config::keystone_auth_uri,
|
|
memcached_servers => $::openstack_integration::config::memcached_servers,
|
|
service_token_roles_required => true,
|
|
}
|
|
class { 'mistral::logging':
|
|
debug => true,
|
|
}
|
|
class { 'mistral::db':
|
|
database_connection => os_database_connection({
|
|
'dialect' => 'mysql+pymysql',
|
|
'host' => $::openstack_integration::config::ip_for_url,
|
|
'username' => 'mistral',
|
|
'password' => 'mistral',
|
|
'database' => 'mistral',
|
|
'charset' => 'utf8',
|
|
'extra' => $::openstack_integration::config::db_extra,
|
|
}),
|
|
}
|
|
class { 'mistral':
|
|
default_transport_url => os_transport_url({
|
|
'transport' => $::openstack_integration::config::messaging_default_proto,
|
|
'host' => $::openstack_integration::config::host,
|
|
'port' => $::openstack_integration::config::messaging_default_port,
|
|
'username' => 'mistral',
|
|
'password' => 'an_even_bigger_secret',
|
|
}),
|
|
rabbit_use_ssl => $::openstack_integration::config::ssl,
|
|
}
|
|
class { 'mistral::keystone::auth':
|
|
public_url => "${::openstack_integration::config::base_url}:8989/v2",
|
|
admin_url => "${::openstack_integration::config::base_url}:8989/v2",
|
|
internal_url => "${::openstack_integration::config::base_url}:8989/v2",
|
|
roles => ['admin', 'service'],
|
|
password => 'a_big_secret',
|
|
}
|
|
class { 'mistral::db::mysql':
|
|
charset => $::openstack_integration::params::mysql_charset,
|
|
collate => $::openstack_integration::params::mysql_collate,
|
|
password => 'mistral',
|
|
host => $::openstack_integration::config::host,
|
|
}
|
|
class { 'mistral::api':
|
|
service_name => 'httpd',
|
|
}
|
|
class { 'mistral::wsgi::apache':
|
|
bind_host => $::openstack_integration::config::host,
|
|
ssl => $::openstack_integration::config::ssl,
|
|
ssl_key => "/etc/mistral/ssl/private/${facts['networking']['fqdn']}.pem",
|
|
ssl_cert => $::openstack_integration::params::cert_path,
|
|
workers => 2,
|
|
threads => 1,
|
|
}
|
|
class { 'mistral::client': }
|
|
class { 'mistral::engine': }
|
|
class { 'mistral::executor': }
|
|
class { 'mistral::event_engine': }
|
|
|
|
}
|