Add support for mistral beaker test for debian system
Change-Id: Idc10e687c23b5e5f6971814881c9aed04946be04
This commit is contained in:
parent
ff05ba8f31
commit
61c3e46f1b
@ -3,69 +3,59 @@ class openstack_integration::mistral {
|
||||
include ::openstack_integration::config
|
||||
include ::openstack_integration::params
|
||||
|
||||
case $::osfamily {
|
||||
'Debian': {
|
||||
warning('Mistral is not yet packaged on Ubuntu systems.')
|
||||
}
|
||||
'RedHat': {
|
||||
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',
|
||||
www_authenticate_uri => "${::openstack_integration::config::keystone_auth_uri}/v3",
|
||||
auth_url => $::openstack_integration::config::keystone_auth_uri,
|
||||
}
|
||||
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',
|
||||
}),
|
||||
database_connection => 'mysql+pymysql://mistral:mistral@127.0.0.1/mistral?charset=utf8',
|
||||
rabbit_use_ssl => $::openstack_integration::config::ssl,
|
||||
# if it works, we might need to change the default in puppet-mistral
|
||||
debug => true,
|
||||
}
|
||||
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",
|
||||
password => 'a_big_secret',
|
||||
}
|
||||
class { '::mistral::db::mysql':
|
||||
password => 'mistral',
|
||||
}
|
||||
class { '::mistral::api':
|
||||
service_name => 'httpd',
|
||||
}
|
||||
include ::apache
|
||||
class { '::mistral::wsgi::apache':
|
||||
bind_host => $::openstack_integration::config::ip_for_url,
|
||||
ssl => $::openstack_integration::config::ssl,
|
||||
ssl_key => "/etc/mistral/ssl/private/${::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': }
|
||||
}
|
||||
default: {
|
||||
fail("Unsupported osfamily (${::osfamily})")
|
||||
}
|
||||
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',
|
||||
www_authenticate_uri => "${::openstack_integration::config::keystone_auth_uri}/v3",
|
||||
auth_url => $::openstack_integration::config::keystone_auth_uri,
|
||||
}
|
||||
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',
|
||||
}),
|
||||
database_connection => 'mysql+pymysql://mistral:mistral@127.0.0.1/mistral?charset=utf8',
|
||||
rabbit_use_ssl => $::openstack_integration::config::ssl,
|
||||
# if it works, we might need to change the default in puppet-mistral
|
||||
debug => true,
|
||||
}
|
||||
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",
|
||||
password => 'a_big_secret',
|
||||
}
|
||||
class { '::mistral::db::mysql':
|
||||
password => 'mistral',
|
||||
}
|
||||
class { '::mistral::api':
|
||||
service_name => 'httpd',
|
||||
}
|
||||
include ::apache
|
||||
class { '::mistral::wsgi::apache':
|
||||
bind_host => $::openstack_integration::config::ip_for_url,
|
||||
ssl => $::openstack_integration::config::ssl,
|
||||
ssl_key => "/etc/mistral/ssl/private/${::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': }
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user