
The rabbit_host, rabbit_hosts, rabbit_userid, rabbit_password, rabbit_port and rabbit_virtual_host parameters are being deprecated. This change updates the p-o-i tests to use the default_transport_url for the rabbit connection instead. Change-Id: Icb15ad3b5d75a35afcb685f4ae03c5755031fc3d Depends-On: I43ac3079da9e52179457ca1a34f4faee60d5617b Depends-On: Ie63457370ae37ef5af5878b1a97b8bafa80a8189 Depends-On: Ia0c5b5072431bbc186c8b96b7f034e68e9248af3 Depends-On: I43500ac7be4296ea534266fa14ca37fc700b0092 Depends-On: If4dfe8b82518fc4e590731a805ee3115b11f4f47 Depends-On: I00d4782693c1f67b82673624d4d36822c9762303 Depends-On: If83c0f0e61a08061334536399a42767a305966b7
88 lines
2.9 KiB
Puppet
88 lines
2.9 KiB
Puppet
class openstack_integration::aodh {
|
|
|
|
include ::openstack_integration::config
|
|
include ::openstack_integration::params
|
|
|
|
rabbitmq_user { 'aodh':
|
|
admin => true,
|
|
password => 'an_even_bigger_secret',
|
|
provider => 'rabbitmqctl',
|
|
require => Class['::rabbitmq'],
|
|
}
|
|
rabbitmq_user_permissions { 'aodh@/':
|
|
configure_permission => '.*',
|
|
write_permission => '.*',
|
|
read_permission => '.*',
|
|
provider => 'rabbitmqctl',
|
|
require => Class['::rabbitmq'],
|
|
}
|
|
|
|
if $::openstack_integration::config::ssl {
|
|
openstack_integration::ssl_key { 'aodh':
|
|
notify => Service['httpd'],
|
|
require => Package['aodh'],
|
|
}
|
|
Exec['update-ca-certificates'] ~> Service['httpd']
|
|
}
|
|
|
|
# gnocchi is not packaged in Ubuntu Cloud Archive
|
|
# https://bugs.launchpad.net/cloud-archive/+bug/1535740
|
|
if $::osfamily == 'RedHat' {
|
|
$gnocchi_url = "${::openstack_integration::config::ip_for_url}:8041"
|
|
} else {
|
|
$gnocchi_url = undef
|
|
}
|
|
class { '::aodh':
|
|
default_transport_url => os_transport_url({
|
|
'transport' => 'rabbit',
|
|
'host' => $::openstack_integration::config::host,
|
|
'port' => $::openstack_integration::config::rabbit_port,
|
|
'username' => 'aodh',
|
|
'password' => 'an_even_bigger_secret',
|
|
}),
|
|
rabbit_use_ssl => $::openstack_integration::config::ssl,
|
|
debug => true,
|
|
database_connection => 'mysql+pymysql://aodh:aodh@127.0.0.1/aodh?charset=utf8',
|
|
gnocchi_url => $gnocchi_url,
|
|
}
|
|
class { '::aodh::db::mysql':
|
|
password => 'aodh',
|
|
}
|
|
class { '::aodh::keystone::auth':
|
|
public_url => "${::openstack_integration::config::base_url}:8042",
|
|
internal_url => "${::openstack_integration::config::base_url}:8042",
|
|
admin_url => "${::openstack_integration::config::base_url}:8042",
|
|
password => 'a_big_secret',
|
|
}
|
|
class { '::aodh::keystone::authtoken':
|
|
password => 'a_big_secret',
|
|
user_domain_name => 'Default',
|
|
project_domain_name => 'Default',
|
|
auth_url => $::openstack_integration::config::keystone_admin_uri,
|
|
auth_uri => $::openstack_integration::config::keystone_auth_uri,
|
|
memcached_servers => $::openstack_integration::config::memcached_servers,
|
|
}
|
|
class { '::aodh::api':
|
|
enabled => true,
|
|
service_name => 'httpd',
|
|
}
|
|
include ::apache
|
|
class { '::aodh::wsgi::apache':
|
|
bind_host => $::openstack_integration::config::ip_for_url,
|
|
ssl => $::openstack_integration::config::ssl,
|
|
ssl_key => "/etc/aodh/ssl/private/${::fqdn}.pem",
|
|
ssl_cert => $::openstack_integration::params::cert_path,
|
|
workers => 2,
|
|
}
|
|
class { '::aodh::auth':
|
|
auth_url => "${::openstack_integration::config::keystone_auth_uri}/v2.0",
|
|
auth_password => 'a_big_secret',
|
|
}
|
|
class { '::aodh::client': }
|
|
class { '::aodh::notifier': }
|
|
class { '::aodh::listener': }
|
|
class { '::aodh::evaluator': }
|
|
class { '::aodh::db::sync': }
|
|
|
|
}
|