Files
puppet-cloudkitty/manifests/api.pp
Takashi Kajinami 13a5a26613 Add support for oslo.middleware options
Change-Id: Ib5e374c97af141c47407df19ae71e7b518765f84
2021-05-12 00:26:58 +09:00

124 lines
3.6 KiB
Puppet

# == Class: cloudkitty::api
#
# Installs & configure the cloudkitty API service
#
# === Parameters
# [*package_ensure*]
# (Optional) Ensure state for package.
# Defaults to 'present'.
#
# [*enabled*]
# (optional) Should the service be enabled.
# Defaults to 'true'.
#
# [*manage_service*]
# (optional) Whether the service should be managed by Puppet.
# Defaults to 'true'.
#
# [*host_ip*]
# (Optional) Host serving the API.
# Defaults to $::os_service_default.
#
# [*port*]
# (Optional) Host port serving the API.
# Defaults to $::os_service_default.
#
# [*pecan_debug*]
# (Optional) Toggle Pecan Debug Middleware.
# Defaults to $::os_service_default.
#
# [*sync_db*]
# (optional) Run cloudkitty-dbsync command on api nodes after installing the package.
# Defaults to true.
#
# [*service_name*]
# (optional) Name of the service that will be providing the
# server functionality of cloudkitty-api.
# If the value is 'httpd', this means cloudkitty-api will be a web
# service, and you must use another class to configure that
# web service. For example, use class { 'cloudkitty::wsgi::apache'...}
# to make cloudkitty-api be a web app using apache mod_wsgi.
# Defaults to 'httpd'
#
# [*enable_proxy_headers_parsing*]
# (Optional) Enable paste middleware to handle SSL requests through
# HTTPProxyToWSGI middleware.
# Defaults to $::os_service_default.
#
# [*max_request_body_size*]
# (Optional) Set max request body size
# Defaults to $::os_service_default.
#
class cloudkitty::api (
$package_ensure = 'present',
$manage_service = true,
$enabled = true,
$host_ip = $::os_service_default,
$port = $::os_service_default,
$pecan_debug = $::os_service_default,
$sync_db = true,
$service_name = 'httpd',
$enable_proxy_headers_parsing = $::os_service_default,
$max_request_body_size = $::os_service_default,
) {
include cloudkitty
include cloudkitty::deps
include cloudkitty::params
include cloudkitty::policy
package { 'cloudkitty-api':
ensure => $package_ensure,
name => $::cloudkitty::params::api_package_name,
tag => ['openstack', 'cloudkitty-package'],
}
if $manage_service {
if $enabled {
$service_ensure = 'running'
} else {
$service_ensure = 'stopped'
}
}
if $sync_db {
include cloudkitty::db::sync
}
if $service_name == $::cloudkitty::params::api_service_name {
service { 'cloudkitty-api':
enable => $enabled,
name => 'cloudkitty-api',
hasstatus => true,
hasrestart => true,
tag => 'cloudkitty-service',
}
} elsif $service_name == 'httpd' {
include apache::params
service { 'cloudkitty-api':
ensure => 'stopped',
name => $::cloudkitty::params::api_service_name,
enable => false,
tag => 'cloudkitty-service',
}
Service <| title == 'httpd' |> { tag +> 'cloudkitty-service' }
# we need to make sure cloudkitty-api/eventlet is stopped before trying to start apache
Service['cloudkitty-api'] -> Service[$service_name]
} else {
fail('Invalid service_name. Only httpd for being run by a httpd server')
}
cloudkitty_config {
'api/host_ip': value => $host_ip;
'api/port': value => $port;
'api/pecan_debug': value => $pecan_debug;
}
oslo::middleware { 'cloudkitty_config':
enable_proxy_headers_parsing => $enable_proxy_headers_parsing,
max_request_body_size => $max_request_body_size,
}
}