tree: 5d5591c7e8aad05b6749920bb25e99f093e82fbc [path history] [tgz]
  1. README.md
  2. admin-openrc.sh
  3. configure_users_mitaka.sh
  4. install_ansible.sh
  5. mongo_user.sh
  6. os_ceilometer_mitaka.yml
  7. templates/
xos/synchronizer/ceilometer/ceilometer_service_custom_image/mitaka-v2/README.md

ceilometer-ansible-mitaka

1.Adding of ceilometer user in mongodb using mongodb ansible module is throwing error,Need to fix. Workaroung using scripter is added. 2.Mongodb connection in ceilometer.conf mitaka has error.

[database] ... connection = mongodb://ceilometer:CEILOMETER_DBPASS@controller:27017/ceilometer

The above connection is not working.So replaced with below lines: metering_connection = mongodb://localhost:27017/ceilometer event_connection = mongodb://localhost:27017/ceilometer

3.# mongo --host controller --eval ' db = db.getSiblingDB("ceilometer"); db.createUser({user: "ceilometer", pwd: "CEILOMETER_DBPASS", roles: [ "readWrite", "dbAdmin" ]})'

The above command creteUser has some issues,so it is replaced with addUser(point 1 using script).