system-config/stop_all_zuul.yaml
Paul Belanger 381c1bad3c
Remove zuul-launcher support
With the migration to zuulv3, there is no more zuul-launcher. This has
become zuul-executor, which has been moved into production.

Servers have already been deleted, lets also remove it from puppet.

Change-Id: Id2b53decdc63712460049f5fa9ed751e049d17ff
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2017-10-30 20:36:53 -04:00

30 lines
672 B
YAML

---
- hosts: 'zuul.openstack.org'
any_errors_fatal: true
tasks:
- name: Stop Zuul
service:
name: zuul
state: stopped
become: true
become_user: root
- name: Wait for (3h10m) to stop zuul
wait_for:
path: /var/run/zuul/zuul.pid
state: absent
timeout: 11400
- hosts: 'zm0*.openstack.org'
tasks:
- name: Hard stop zuul-merger
service:
name: zuul-merger
state: stopped
become: true
become_user: root
- name: Wait for (3h10m) to stop zuul-merger
wait_for:
path: /var/run/zuul-merger/zuul-merger.pid
state: absent
timeout: 11400