Fix hosts lists in example.pp

Using strings results in following errors:

Change-Id: I74e200a4c375830c18448bd60ccdd156d7b1c4d2
Error: join(): Requires array to work with at /etc/puppet/modules/trove/manifests/api.pp:352 on node XXX
Error: join(): Requires array to work with at /etc/puppet/modules/trove/manifests/api.pp:352 on node XXX
This commit is contained in:
Tomasz Nowak 2016-12-14 12:34:32 +01:00
parent 1db71b4159
commit 25f4d8b2f4
1 changed files with 2 additions and 2 deletions

View File

@ -13,12 +13,12 @@ class { '::trove::keystone::auth':
class { '::trove::db::mysql':
password => 'dbpass',
host => '10.0.0.1',
allowed_hosts => '10.0.0.1'
allowed_hosts => ['10.0.0.1']
}
class { '::trove':
database_connection => 'mysql://trove:secrete@10.0.0.1/trove?charset=utf8',
rabbit_hosts => '10.0.0.1',
rabbit_hosts => ['10.0.0.1'],
rabbit_password => 'secrete',
nova_proxy_admin_pass => 'novapass',
}