
Drop validation of service name which is not implemented for the other daemons, to simplify handling of the provided service name. This allows us to more easily offload the service name definition to hiera data in the near future. Change-Id: I179246eabd540e7c905d67eb3f99840809c99e4e Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
138 lines
4.4 KiB
Puppet
138 lines
4.4 KiB
Puppet
# Installs & configure the aodh api service
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*enabled*]
|
|
# (optional) Should the service be enabled.
|
|
# Defaults to true
|
|
#
|
|
# [*manage_service*]
|
|
# (optional) Whether the service should be managed by Puppet.
|
|
# Defaults to true.
|
|
#
|
|
# [*package_ensure*]
|
|
# (optional) ensure state for package.
|
|
# Defaults to 'present'
|
|
#
|
|
# [*service_name*]
|
|
# (optional) Name of the service that will be providing the
|
|
# server functionality of aodh-api.
|
|
# If the value is 'httpd', this means aodh-api will be a web
|
|
# service, and you must use another class to configure that
|
|
# web service. For example, use class { 'aodh::wsgi::apache'...}
|
|
# to make aodh-api be a web app using apache mod_wsgi.
|
|
# Defaults to '$aodh::params::api_service_name'
|
|
#
|
|
# [*sync_db*]
|
|
# (optional) Run gnocchi-upgrade db sync on api nodes after installing the package.
|
|
# Defaults to false
|
|
#
|
|
# [*auth_strategy*]
|
|
# (optional) Type of authentication to be used.
|
|
# Defaults to 'keystone'
|
|
#
|
|
# [*enable_proxy_headers_parsing*]
|
|
# (Optional) Enable paste middleware to handle SSL requests through
|
|
# HTTPProxyToWSGI middleware.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*max_request_body_size*]
|
|
# (Optional) Set max request body size
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*paste_config*]
|
|
# (Optional) Configuration file for WSGI definition of API
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*gnocchi_external_project_owner*]
|
|
# (optional) Gnocchi external project owner (usually Ceilometer project name)
|
|
# Defaults to 'services'
|
|
#
|
|
# [*gnocchi_external_domain_name*]
|
|
# (optional) Domain name of resources creator in Gnocchi.
|
|
# Defaults to 'Default'
|
|
#
|
|
class aodh::api (
|
|
Boolean $manage_service = true,
|
|
Boolean $enabled = true,
|
|
Stdlib::Ensure::Package $package_ensure = 'present',
|
|
String[1] $service_name = $aodh::params::api_service_name,
|
|
Boolean $sync_db = false,
|
|
$auth_strategy = 'keystone',
|
|
$enable_proxy_headers_parsing = $facts['os_service_default'],
|
|
$max_request_body_size = $facts['os_service_default'],
|
|
$paste_config = $facts['os_service_default'],
|
|
$gnocchi_external_project_owner = 'services',
|
|
$gnocchi_external_domain_name = 'Default',
|
|
) inherits aodh::params {
|
|
include aodh::deps
|
|
include aodh::params
|
|
include aodh::policy
|
|
|
|
if $auth_strategy == 'keystone' {
|
|
include aodh::keystone::authtoken
|
|
}
|
|
|
|
package { 'aodh-api':
|
|
ensure => $package_ensure,
|
|
name => $aodh::params::api_package_name,
|
|
tag => ['openstack', 'aodh-package'],
|
|
}
|
|
|
|
if $sync_db {
|
|
include aodh::db::sync
|
|
}
|
|
|
|
if $manage_service {
|
|
case $service_name {
|
|
'httpd': {
|
|
Service <| title == 'httpd' |> { tag +> 'aodh-service' }
|
|
|
|
if $aodh::params::api_service_name {
|
|
service { 'aodh-api':
|
|
ensure => 'stopped',
|
|
name => $aodh::params::api_service_name,
|
|
enable => false,
|
|
tag => 'aodh-service',
|
|
}
|
|
# we need to make sure aodh-api/eventlet is stopped before trying to start apache
|
|
Service['aodh-api'] -> Service['httpd']
|
|
}
|
|
|
|
# On any paste-api.ini config change, we must restart Aodh API.
|
|
Aodh_api_paste_ini<||> ~> Service['httpd']
|
|
}
|
|
default: {
|
|
$service_ensure = $enabled ? {
|
|
true => 'running',
|
|
default => 'stopped',
|
|
}
|
|
|
|
service { 'aodh-api':
|
|
ensure => $service_ensure,
|
|
name => $service_name,
|
|
enable => $enabled,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
tag => 'aodh-service',
|
|
}
|
|
# On any paste-api.ini config change, we must restart Aodh API.
|
|
Aodh_api_paste_ini<||> ~> Service['aodh-api']
|
|
# On any uwsgi config change, we must restart Aodh API.
|
|
Aodh_api_uwsgi_config<||> ~> Service['aodh-api']
|
|
}
|
|
}
|
|
}
|
|
|
|
aodh_config {
|
|
'api/gnocchi_external_project_owner': value => $gnocchi_external_project_owner;
|
|
'api/gnocchi_external_domain_name': value => $gnocchi_external_domain_name;
|
|
'api/paste_config': value => $paste_config;
|
|
}
|
|
|
|
oslo::middleware { 'aodh_config':
|
|
enable_proxy_headers_parsing => $enable_proxy_headers_parsing,
|
|
max_request_body_size => $max_request_body_size,
|
|
}
|
|
}
|