This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: I281a300df5abfa927b8b6de54f1755ad89ccf563
74 lines
1.7 KiB
Puppet
74 lines
1.7 KiB
Puppet
# Installs & configure the octavia 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.
|
|
#
|
|
# [*host*]
|
|
# (optional) The octavia api bind address.
|
|
# Defaults to 0.0.0.0
|
|
#
|
|
# [*port*]
|
|
# (optional) The octavia api port.
|
|
# Defaults to 9876
|
|
#
|
|
# [*package_ensure*]
|
|
# (optional) ensure state for package.
|
|
# Defaults to 'present'
|
|
#
|
|
# [*sync_db*]
|
|
# (optional) Run octavia-db-manage upgrade head on api nodes after installing the package.
|
|
# Defaults to false
|
|
|
|
class octavia::api (
|
|
$manage_service = true,
|
|
$enabled = true,
|
|
$package_ensure = 'present',
|
|
$host = '0.0.0.0',
|
|
$port = '9876',
|
|
$sync_db = false,
|
|
) inherits octavia::params {
|
|
|
|
include ::octavia::deps
|
|
include ::octavia::policy
|
|
|
|
package { 'octavia-api':
|
|
ensure => $package_ensure,
|
|
name => $::octavia::params::api_package_name,
|
|
tag => ['openstack', 'octavia-package'],
|
|
}
|
|
|
|
if $manage_service {
|
|
if $enabled {
|
|
$service_ensure = 'running'
|
|
} else {
|
|
$service_ensure = 'stopped'
|
|
}
|
|
}
|
|
|
|
if $sync_db {
|
|
include ::octavia::db::sync
|
|
}
|
|
|
|
service { 'octavia-api':
|
|
ensure => $service_ensure,
|
|
name => $::octavia::params::api_service_name,
|
|
enable => $enabled,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
tag => ['octavia-service', 'octavia-db-sync-service'],
|
|
}
|
|
|
|
octavia_config {
|
|
'api/host' : value => $host;
|
|
'api/port' : value => $port;
|
|
}
|
|
|
|
}
|