Remove sqlite db connection from mitaka template

The ceilometer-agent incorrectly declares a sqlite db connection.
It was required for icehouse, but can be dropped in the mitaka
template.

Change-Id: I7882daacf66eb4efc4810903199fe7082ee86a03
Closes-Bug: 1631876
This commit is contained in:
Liam Young 2016-10-10 08:45:03 +00:00
parent fa77346e98
commit 846a75bee5
3 changed files with 1 additions and 10 deletions

1
hooks/update-status Symbolic link
View File

@ -0,0 +1 @@
ceilometer_hooks.py

View File

@ -32,9 +32,3 @@ telemetry_secret = {{ metering_secret }}
{% include "section-keystone-authtoken-mitaka" %}
{% include "section-rabbitmq-oslo" %}
[database]
# NOTE(jamespage) this allows the db sync process to run OK for upgrades
# fixed in icehouse
backend=sqlalchemy
connection=sqlite:////var/lib/ceilometer/$sqlite_db

View File

@ -577,10 +577,6 @@ class CeiloAgentBasicDeployment(OpenStackAmuletDeployment):
'DEFAULT': {
'logdir': '/var/log/ceilometer'
},
'database': {
'backend': 'sqlalchemy',
'connection': 'sqlite:////var/lib/ceilometer/$sqlite_db'
}
}
for section, pairs in expected.iteritems():