Remove the reload from the cinder playbook

This removes the reload from the cinder playbook because it's causing
the cinder service(s) to consume 100% CPU which causes gate issues, and
will result in misbehaving deployments in prod.

Closes-Bug: 1709346
Change-Id: Ifd3b7b7b177dfb7d6456f802284046dd7ce96a9a
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2017-08-07 12:28:25 -05:00 committed by Kevin Carter (cloudnull)
parent 68ceb71104
commit 191155546c
1 changed files with 5 additions and 5 deletions

View File

@ -150,13 +150,13 @@
- name: Execute cinder service reload
include: common-tasks/restart-service.yml
vars:
service_name: "{{ item }}"
service_action: "reloaded"
service_name: "{{ item.name }}"
service_action: "{{ item.action }}"
service_fact: "cinder"
with_items:
- cinder-backup
- cinder-volume
- cinder-scheduler
- { name: "cinder-backup", action: "restarted" }
- { name: "cinder-volume", action: "restarted" }
- { name: "cinder-scheduler", action: "restarted" }
when:
- "cinder_all_software_updated | bool"
- "ansible_local['openstack_ansible']['cinder']['need_service_restart'] | bool"