diff options
author | carey.xu <carey.xuhan@huawei.com> | 2015-09-30 11:26:46 +0800 |
---|---|---|
committer | carey.xu <carey.xuhan@huawei.com> | 2015-10-09 15:03:51 +0800 |
commit | 00aaaac786bcec0d2de7c14c4f3c5a89ba2553f5 (patch) | |
tree | 05b45bee93c88f363cb78d79f9dac26cdf12afe6 /deploy/adapters/ansible/roles/ceilometer_controller/templates | |
parent | 9a95593b0c8cdefb6ad4a3c836b699f42b1f7323 (diff) |
compass4nfv support ceilometer
JIRA: COMPASS-53
Change-Id: Ie8fc0f3f03f1de3c9fcf37778e025175ed391bc5
Signed-off-by: carey.xu <carey.xuhan@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/ceilometer_controller/templates')
3 files changed, 33 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/ceilometer_controller/templates/ceilometer.j2 b/deploy/adapters/ansible/roles/ceilometer_controller/templates/ceilometer.j2 new file mode 100644 index 00000000..09ca5272 --- /dev/null +++ b/deploy/adapters/ansible/roles/ceilometer_controller/templates/ceilometer.j2 @@ -0,0 +1,25 @@ +[DEFAULT] +rpc_backend = rabbit +rabbit_host = {{ internal_vip.ip }} +rabbit_password = {{ RABBIT_PASS }} +auth_strategy = keystone +verbose = True + +[database] +connection = mongodb://ceilometer:{{ CEILOMETER_DBPASS }}@{{ internal_vip.ip }}:27017/ceilometer + +[keystone_authtoken] +auth_uri = http://{{ internal_vip.ip }}:5000/v2.0 +identity_uri = http://{{ internal_vip.ip }}:35357 +admin_tenant_name = service +admin_user = ceilometer +admin_password = {{ CEILOMETER_PASS }} + +[service_credentials] +os_auth_url = http://{{ internal_vip.ip }}:5000/v2.0 +os_username = ceilometer +os_tenant_name = service +os_password = {{ CEILOMETER_PASS }} + +[publisher] +metering_secret = {{ metering_secret }} diff --git a/deploy/adapters/ansible/roles/ceilometer_controller/templates/cinder.j2 b/deploy/adapters/ansible/roles/ceilometer_controller/templates/cinder.j2 new file mode 100644 index 00000000..390bd870 --- /dev/null +++ b/deploy/adapters/ansible/roles/ceilometer_controller/templates/cinder.j2 @@ -0,0 +1,3 @@ +[DEFAULT] +control_exchange = cinder +notification_driver = messagingv2 diff --git a/deploy/adapters/ansible/roles/ceilometer_controller/templates/glance.j2 b/deploy/adapters/ansible/roles/ceilometer_controller/templates/glance.j2 new file mode 100644 index 00000000..c34f5d81 --- /dev/null +++ b/deploy/adapters/ansible/roles/ceilometer_controller/templates/glance.j2 @@ -0,0 +1,5 @@ +[DEFAULT] +notification_driver = messagingv2 +rpc_backend = rabbit +rabbit_host = {{ internal_vip.ip }} +rabbit_password = {{ RABBIT_PASS }} |