8cd59db6f6
Since these services don't use RPC, we don't need to reload them. And these caused problems in gates. Change-Id: I6967bdc7da0d0c3c06873e3d554124ca995f4c13 Closes-Bug: #1622117
22 lines
733 B
YAML
22 lines
733 B
YAML
---
|
|
# This play calls sighup on every service to refresh upgrade levels
|
|
- name: Sighup nova-api
|
|
command: docker exec -t nova_api kill -1 1
|
|
when: inventory_hostname in groups['nova-api']
|
|
|
|
- name: Sighup nova-conductor
|
|
command: docker exec -t nova_conductor kill -1 1
|
|
when: inventory_hostname in groups['nova-conductor']
|
|
|
|
- name: Sighup nova-consoleauth
|
|
command: docker exec -t nova_consoleauth kill -1 1
|
|
when: inventory_hostname in groups['nova-consoleauth']
|
|
|
|
- name: Sighup nova-scheduler
|
|
command: docker exec -t nova_scheduler kill -1 1
|
|
when: inventory_hostname in groups['nova-scheduler']
|
|
|
|
- name: Sighup nova-compute
|
|
command: docker exec -t nova_compute kill -1 1
|
|
when: inventory_hostname in groups['compute']
|