JIRA: COMPASS-153
Change-Id: I99e85aea7c35ae6d82fac7b667eadd9577351e01
Signed-off-by: baigk <baiguoku@huawei.com>
notification_driver = nova.openstack.common.notifier.rpc_notifier
notification_driver = ceilometer.compute.nova_notifier
+memcached_servers = {{ internal_vip.ip }}:11211
+
[database]
# The SQLAlchemy connection string used to connect to the database
connection = mysql://nova:{{ NOVA_DBPASS }}@{{ db_host }}/nova
dest=/etc/openstack-dashboard/local_settings.py
backup=yes
+- name: update memcached conf
+ lineinfile: dest=/etc/memcached.conf state=present
+ regexp="-l *"
+ line="-l {{ internal_vip.ip }}"
+
- name: restart dashboard services
service: name={{ item }} state=restarted enabled=yes
with_items: services | union(services_noarch)
- memcached
- openstack-dashboard
-services_noarch: []
+services_noarch:
+ - memcached