
Move all dependency tracking to an external class which simplifies the relationships and allows managing Mistral without necessarily using packages. Change-Id: If83638c6cdabc4256cd775d7a0187a5668e4d2c9
92 lines
2.4 KiB
Puppet
92 lines
2.4 KiB
Puppet
# == Class: mistral::executor
|
|
#
|
|
# Installs & configure the Mistral Engine 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*]
|
|
# (Optional) Name of the executor node. This can be an opaque identifier.
|
|
# It is not necessarily a hostname, FQDN, or IP address. (string value)
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*topic*]
|
|
# (Optional) The message topic that the executor listens on. (string value)
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*version*]
|
|
# (Optional) The version of the executor. (string value)
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*evaluation_interval*]
|
|
# (Deprecated) This should now be set via
|
|
# mistral::engine::evaluation_interval.
|
|
# Defaults to false.
|
|
#
|
|
# [*older_than*]
|
|
# (Deprecated) This should now be set via mistral::engine::older_than.
|
|
# Defaults to false.
|
|
#
|
|
class mistral::executor (
|
|
$package_ensure = present,
|
|
$manage_service = true,
|
|
$enabled = true,
|
|
$host = $::os_service_default,
|
|
$topic = $::os_service_default,
|
|
$version = $::os_service_default,
|
|
#DEPRECATED
|
|
$evaluation_interval = false,
|
|
$older_than = false,
|
|
) {
|
|
|
|
include ::mistral::deps
|
|
include ::mistral::params
|
|
|
|
if $evaluation_interval {
|
|
warning('evaluation_interval is deprecated here. Please use mistral::engine::evaluation_interval instead.')
|
|
}
|
|
if $older_than {
|
|
warning('older_than is deprecated here. Please use mistral::engine::older_than instead.')
|
|
}
|
|
|
|
package { 'mistral-executor':
|
|
ensure => $package_ensure,
|
|
name => $::mistral::params::executor_package_name,
|
|
tag => ['openstack', 'mistral-package'],
|
|
}
|
|
|
|
if $manage_service {
|
|
if $enabled {
|
|
$service_ensure = 'running'
|
|
} else {
|
|
$service_ensure = 'stopped'
|
|
}
|
|
}
|
|
|
|
service { 'mistral-executor':
|
|
ensure => $service_ensure,
|
|
name => $::mistral::params::executor_service_name,
|
|
enable => $enabled,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
tag => 'mistral-service',
|
|
}
|
|
|
|
mistral_config {
|
|
'executor/host': value => $host;
|
|
'executor/topic': value => $topic;
|
|
'executor/version': value => $version;
|
|
}
|
|
|
|
}
|