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
86 lines
3.1 KiB
Puppet
86 lines
3.1 KiB
Puppet
class openstack_integration::zaqar {
|
|
|
|
include openstack_integration::config
|
|
|
|
if $::openstack_integration::config::ssl {
|
|
openstack_integration::ssl_key { 'zaqar':
|
|
notify => Service['httpd'],
|
|
require => Package['zaqar-common'],
|
|
}
|
|
Exec['update-ca-certificates'] ~> Service['httpd']
|
|
}
|
|
class {'zaqar::logging':
|
|
debug => true,
|
|
}
|
|
class { 'zaqar::db::mysql':
|
|
charset => $::openstack_integration::params::mysql_charset,
|
|
collate => $::openstack_integration::params::mysql_collate,
|
|
password => 'zaqar',
|
|
host => $::openstack_integration::config::host,
|
|
}
|
|
class { 'zaqar::keystone::auth':
|
|
public_url => "${::openstack_integration::config::base_url}:8888",
|
|
internal_url => "${::openstack_integration::config::base_url}:8888",
|
|
admin_url => "${::openstack_integration::config::base_url}:8888",
|
|
roles => ['admin', 'service'],
|
|
password => 'a_big_secret',
|
|
}
|
|
class { 'zaqar::keystone::auth_websocket':
|
|
public_url => "ws://${::openstack_integration::config::ip_for_url}:8888",
|
|
internal_url => "ws://${::openstack_integration::config::ip_for_url}:8888",
|
|
admin_url => "ws://${::openstack_integration::config::ip_for_url}:8888",
|
|
}
|
|
class {'zaqar::management::sqlalchemy':
|
|
uri => os_database_connection({
|
|
'dialect' => 'mysql+pymysql',
|
|
'host' => $::openstack_integration::config::ip_for_url,
|
|
'username' => 'zaqar',
|
|
'password' => 'zaqar',
|
|
'database' => 'zaqar',
|
|
'charset' => 'utf8',
|
|
'extra' => $::openstack_integration::config::db_extra,
|
|
}),
|
|
}
|
|
class {'zaqar::messaging::swift':
|
|
auth_url => "${::openstack_integration::config::keystone_auth_uri}/v3",
|
|
uri => 'swift://zaqar:a_big_secret@/services',
|
|
}
|
|
class {'zaqar::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 {'zaqar':
|
|
unreliable => true,
|
|
management_store => 'sqlalchemy',
|
|
message_store => 'swift',
|
|
}
|
|
class {'zaqar::server':
|
|
service_name => 'httpd',
|
|
}
|
|
class { 'zaqar::wsgi::apache':
|
|
bind_host => $::openstack_integration::config::host,
|
|
ssl => $::openstack_integration::config::ssl,
|
|
ssl_cert => $::openstack_integration::params::cert_path,
|
|
ssl_key => "/etc/zaqar/ssl/private/${facts['networking']['fqdn']}.pem",
|
|
workers => 2,
|
|
}
|
|
include zaqar::db::sync
|
|
# run a second instance using websockets, the Debian system does
|
|
# not support the use of services to run a second instance.
|
|
if $facts['os']['family'] == 'RedHat' {
|
|
class { 'zaqar::transport::websocket':
|
|
bind => $::openstack_integration::config::host,
|
|
notification_bind => $::openstack_integration::config::host,
|
|
}
|
|
zaqar::server_instance{ '1':
|
|
transport => 'websocket'
|
|
}
|
|
}
|
|
|
|
}
|