3cb02d8768
Change-Id: Id167b0dcf68fc6d9b211ecb9c6acbfaf4b1afead Closes-Bug: #1569658
224 lines
7.9 KiB
Puppet
224 lines
7.9 KiB
Puppet
# == Class: trove::guestagent
|
|
#
|
|
# Manages trove guest agent package and service
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*enabled*]
|
|
# (optional) Whether to enable the trove guest agent service
|
|
# Defaults to true
|
|
#
|
|
# [*manage_service*]
|
|
# (optional) Whether to start/stop the service
|
|
# Defaults to true
|
|
#
|
|
# [*ensure_package*]
|
|
# (optional) The state of the trove guest agent package
|
|
# Defaults to 'present'
|
|
#
|
|
# [*debug*]
|
|
# (optional) Rather to log the trove guest agent service at debug level.
|
|
# Default: false
|
|
#
|
|
# [*log_file*]
|
|
# (optional) The path of file used for logging
|
|
# If set to $::os_service_default, it will not log to any file.
|
|
# Default: /var/log/trove/trove-guestagent.log
|
|
#
|
|
# [*log_dir*]
|
|
# (optional) directory to which trove logs are sent.
|
|
# If set to boolean false, it will not log to any directory.
|
|
# Defaults to '/var/log/trove'
|
|
#
|
|
# [*use_syslog*]
|
|
# (optional) Use syslog for logging.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*log_facility*]
|
|
# (optional) Syslog facility to receive log lines.
|
|
# Defaults to 'LOG_USER'.
|
|
#
|
|
# [*auth_url*]
|
|
# (optional) Authentication URL.
|
|
# Defaults to 'http://localhost:5000/v2.0'.
|
|
#
|
|
# [*swift_url*]
|
|
# (optional) Swift URL. If this is unset in the class, Trove will
|
|
# lookup the URL using the Keystone catalog.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*swift_service_type*]
|
|
# (optional) Service type to use when searching catalog
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*rabbit_hosts*]
|
|
# (optional) List of clustered rabbit servers.
|
|
# Defaults to the value set in the trove class.
|
|
# The default can generally be left unless the
|
|
# guests need to talk to the rabbit cluster via
|
|
# different IPs.
|
|
#
|
|
# [*rabbit_host*]
|
|
# (optional) Location of rabbitmq installation.
|
|
# Defaults to the value set in the trove class.
|
|
# The default can generally be left unless the
|
|
# guests need to talk to the rabbit cluster via
|
|
# a different IP.
|
|
#
|
|
# [*rabbit_port*]
|
|
# (optional) Port for rabbitmq instance.
|
|
# Defaults to the value set in the trove class.
|
|
# The default can generally be left unless the
|
|
# guests need to talk to the rabbit cluster via
|
|
# a different port.
|
|
#
|
|
# [*rabbit_use_ssl*]
|
|
# (optional) Connect over SSL for RabbitMQ
|
|
# Defaults to the value set in the trove class.
|
|
# The default can generally be left unless the
|
|
# guests need to talk to the rabbit cluster via
|
|
# a different ssl connection option.
|
|
#
|
|
# DEPRECATED PARAMETERS
|
|
#
|
|
# [*verbose*]
|
|
# (optional) Deprecated. Rather to log the trove
|
|
# guest agent service at verbose level.
|
|
# Default: undef
|
|
#
|
|
# [*root_grant*]
|
|
# (optional) Permissions to grant "root" user.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*root_grant_option*]
|
|
# (optional) Permissions to grant "root" user option.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*default_password_length*]
|
|
# (optional) Default password Length for root password.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*control_exchange*]
|
|
# (Optional) Moved to init.pp. The default exchange to scope topics.
|
|
# Defaults to undef.
|
|
#
|
|
class trove::guestagent(
|
|
$enabled = true,
|
|
$manage_service = true,
|
|
$ensure_package = 'present',
|
|
$debug = $::os_service_default,
|
|
$log_file = '/var/log/trove/trove-guestagent.log',
|
|
$log_dir = '/var/log/trove',
|
|
$use_syslog = $::os_service_default,
|
|
$log_facility = $::os_service_default,
|
|
$auth_url = 'http://localhost:5000/v2.0',
|
|
$swift_url = $::os_service_default,
|
|
$swift_service_type = $::os_service_default,
|
|
$rabbit_hosts = $::trove::rabbit_hosts,
|
|
$rabbit_host = $::trove::rabbit_host,
|
|
$rabbit_port = $::trove::rabbit_port,
|
|
$rabbit_use_ssl = $::trove::rabbit_use_ssl,
|
|
$root_grant = $::os_service_default,
|
|
$root_grant_option = $::os_service_default,
|
|
$default_password_length = $::os_service_default,
|
|
#Deprecated
|
|
$verbose = undef,
|
|
$control_exchange = undef,
|
|
) inherits trove {
|
|
|
|
include ::trove::deps
|
|
include ::trove::params
|
|
|
|
if $verbose {
|
|
warning('verbose is deprecated, has no effect and will be removed after Newton cycle.')
|
|
}
|
|
|
|
# basic service config
|
|
trove_guestagent_config {
|
|
'DEFAULT/trove_auth_url': value => $auth_url;
|
|
'DEFAULT/swift_url': value => $swift_url;
|
|
'DEFAULT/swift_service_type': value => $swift_service_type;
|
|
'DEFAULT/root_grant': value => $root_grant;
|
|
'DEFAULT/root_grant_option': value => $root_grant_option;
|
|
'DEFAULT/default_password_length': value => $default_password_length;
|
|
}
|
|
|
|
oslo::messaging::default { 'trove_guestagent_config':
|
|
transport_url => $::trove::default_transport_url,
|
|
control_exchange => $::trove::control_exchange
|
|
}
|
|
|
|
# region name
|
|
if $::trove::os_region_name {
|
|
trove_guestagent_config { 'DEFAULT/os_region_name': value => $::trove::os_region_name }
|
|
}
|
|
else {
|
|
trove_guestagent_config { 'DEFAULT/os_region_name': ensure => absent }
|
|
}
|
|
|
|
oslo::messaging::notifications { 'trove_guestagent_config':
|
|
transport_url => $::trove::notification_transport_url,
|
|
driver => $::trove::notification_driver,
|
|
topics => $::trove::notification_topics
|
|
}
|
|
|
|
if $::trove::rpc_backend == 'trove.openstack.common.rpc.impl_kombu' or $::trove::rpc_backend == 'rabbit' {
|
|
oslo::messaging::rabbit {'trove_guestagent_config':
|
|
rabbit_hosts => $rabbit_hosts,
|
|
rabbit_host => $rabbit_host,
|
|
rabbit_port => $rabbit_port,
|
|
rabbit_use_ssl => $rabbit_use_ssl,
|
|
rabbit_ha_queues => $::trove::rabbit_ha_queues,
|
|
rabbit_userid => $::trove::rabbit_userid,
|
|
rabbit_password => $::trove::rabbit_password,
|
|
rabbit_virtual_host => $::trove::rabbit_virtual_host,
|
|
kombu_reconnect_delay => $::trove::kombu_reconnect_delay,
|
|
amqp_durable_queues => $::trove::amqp_durable_queues,
|
|
kombu_ssl_ca_certs => $::trove::kombu_ssl_ca_certs,
|
|
kombu_ssl_certfile => $::trove::kombu_ssl_certfile,
|
|
kombu_ssl_keyfile => $::trove::kombu_ssl_keyfile,
|
|
kombu_ssl_version => $::trove::kombu_ssl_version
|
|
}
|
|
} elsif $::trove::rpc_backend == 'amqp' {
|
|
oslo::messaging::amqp { 'trove_guestagent_config':
|
|
server_request_prefix => $::trove::amqp_server_request_prefix,
|
|
broadcast_prefix => $::trove::amqp_broadcast_prefix,
|
|
group_request_prefix => $::trove::amqp_group_request_prefix,
|
|
container_name => $::trove::amqp_container_name,
|
|
idle_timeout => $::trove::amqp_idle_timeout,
|
|
trace => $::trove::amqp_trace,
|
|
ssl_ca_file => $::trove::amqp_ssl_ca_file,
|
|
ssl_cert_file => $::trove::amqp_ssl_cert_file,
|
|
ssl_key_file => $::trove::amqp_ssl_key_file,
|
|
ssl_key_password => $::trove::amqp_ssl_key_password,
|
|
allow_insecure_clients => $::trove::amqp_allow_insecure_clients,
|
|
sasl_mechanisms => $::trove::amqp_sasl_mechanisms,
|
|
sasl_config_dir => $::trove::amqp_sasl_config_dir,
|
|
sasl_config_name => $::trove::amqp_sasl_config_name,
|
|
username => $::trove::amqp_username,
|
|
password => $::trove::amqp_password,
|
|
}
|
|
} else {
|
|
trove_guestagent_config {
|
|
'DEFAULT/rpc_backend' : value => $::trove::rpc_backend
|
|
}
|
|
}
|
|
|
|
oslo::log { 'trove_guestagent_config':
|
|
debug => $debug,
|
|
log_file => $log_file,
|
|
log_dir => $log_dir,
|
|
use_syslog => $use_syslog,
|
|
syslog_log_facility => $log_facility
|
|
}
|
|
|
|
trove::generic_service { 'guestagent':
|
|
enabled => $enabled,
|
|
manage_service => $manage_service,
|
|
package_name => $::trove::params::guestagent_package_name,
|
|
service_name => $::trove::params::guestagent_service_name,
|
|
ensure_package => $ensure_package,
|
|
}
|
|
|
|
}
|