Merge "Add "host" parameter for manila.conf"

This commit is contained in:
Jenkins 2017-08-29 01:23:10 +00:00 committed by Gerrit Code Review
commit b7678412af
3 changed files with 15 additions and 0 deletions

View File

@ -220,6 +220,11 @@
# in the manila config.
# Defaults to false.
#
# [*host*]
# (optional) Name of this node. This can be an opaque identifier. It is
# not necessarily a host name, FQDN, or IP address.
# Defaults to $::os_service_default
#
# === DEPRECATED PARAMETERS
#
# [*rabbit_host*]
@ -304,6 +309,7 @@ class manila (
$amqp_username = $::os_service_default,
$amqp_password = $::os_service_default,
$purge_config = false,
$host = $::os_service_default,
# DEPRECATED PARAMETERS
$rabbit_host = $::os_service_default,
$rabbit_port = $::os_service_default,
@ -402,6 +408,7 @@ manila::rpc_backend are deprecated. Please use manila::default_transport_url ins
'DEFAULT/storage_availability_zone': value => $storage_availability_zone;
'DEFAULT/rootwrap_config': value => $rootwrap_config;
'DEFAULT/state_path': value => $state_path;
'DEFAULT/host': value => $host;
}
oslo::concurrency { 'manila_config': lock_path => $lock_path }

View File

@ -0,0 +1,5 @@
---
features:
- Add new parameter "host", an opaque identifier for the node, not
necessarily a host name, FQDN, or IP address. May be used for more
than one node when these are in an HA cluster.

View File

@ -85,6 +85,9 @@ describe 'manila' do
is_expected.to contain_manila_config('DEFAULT/state_path').with(
:value => '/var/lib/manila'
)
is_expected.to contain_manila_config('DEFAULT/host').with(
:value => '<SERVICE DEFAULT>'
)
is_expected.to contain_manila_config('oslo_concurrency/lock_path').with(
:value => '/tmp/manila/manila_locks'
)