Merge "Add playbook to graceful restart zuul-launchers"
This commit is contained in:
commit
3e64f01bf7
23
playbooks/restart_zuul_launchers.yaml
Normal file
23
playbooks/restart_zuul_launchers.yaml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
- hosts: 'zlstatic0*.openstack.org:zl0*.openstack.org'
|
||||||
|
# Do the entire play completely for one host at a time
|
||||||
|
serial: 1
|
||||||
|
any_errors_fatal: true
|
||||||
|
tasks:
|
||||||
|
- name: Graceful stop zuul-launcher
|
||||||
|
shell: 'zuul-launcher graceful'
|
||||||
|
become: true
|
||||||
|
become_user: zuul
|
||||||
|
|
||||||
|
- name: Wait for (3h10m) to stop zuul-launcher
|
||||||
|
async: 11400
|
||||||
|
poll: 60
|
||||||
|
wait_for:
|
||||||
|
path: /var/run/zuul-launcher/zuul-launcher.pid
|
||||||
|
state: absent
|
||||||
|
timeout: 11400
|
||||||
|
|
||||||
|
- name: Restart zuul-launcher
|
||||||
|
service:
|
||||||
|
name: zuul-launcher
|
||||||
|
state: restarted
|
Loading…
x
Reference in New Issue
Block a user