2a7c755a08
If we need to start and stop, it's best to use playbooks. We already have tasks files with start commands in each role, so put the stop commands into similar task files. Make the restart playbook import_playbook the stop and start playbooks to reduce divergence. Use the graceful shutdown pattern from the gerrit docker-compose to stop the zuul scheduler. Change-Id: Ia20124553821f4b41186bce6ba2bff6ca2333a99
24 lines
469 B
YAML
24 lines
469 B
YAML
# Run this with "-f 20"
|
|
|
|
- hosts: 'zuul-scheduler:!disabled'
|
|
any_errors_fatal: true
|
|
tasks:
|
|
- include_role:
|
|
name: zuul-scheduler
|
|
tasks_from: stop
|
|
- include_role:
|
|
name: zuul-web
|
|
tasks_from: stop
|
|
|
|
- hosts: 'zuul-merger:!disabled'
|
|
tasks:
|
|
- include_role:
|
|
name: zuul-merger
|
|
tasks_from: stop
|
|
|
|
- hosts: 'zuul-executor:!disabled'
|
|
tasks:
|
|
- include_role:
|
|
name: zuul-executor
|
|
tasks_from: stop
|