[Ceilometer] set region to CONFIG_KEYSTONE_REGION

Packstack has support for only one region set by CONFIG_KEYSTONE_REGION
value. We should set region option of all services to this.

Partial-Bug: #1421290

Change-Id: I54f4bcca4e32745ad824741d4079ae485a7f676d
This commit is contained in:
Marc Villacorta
2015-02-12 17:33:52 +01:00
committed by Lukas Bezdicka
parent 2aea06b913
commit a6d81ccac8
2 changed files with 2 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ class { '::ceilometer::agent::notification': }
class { '::ceilometer::agent::auth':
auth_url => hiera('CONFIG_KEYSTONE_PUBLIC_URL'),
auth_password => hiera('CONFIG_CEILOMETER_KS_PW'),
auth_region => hiera('CONFIG_KEYSTONE_REGION'),
}
class { '::ceilometer::agent::central':

View File

@@ -1,6 +1,7 @@
class { '::ceilometer::agent::auth':
auth_url => hiera('CONFIG_KEYSTONE_PUBLIC_URL'),
auth_password => hiera('CONFIG_CEILOMETER_KS_PW'),
auth_region => hiera('CONFIG_KEYSTONE_REGION'),
}
class { '::ceilometer::agent::compute': }