xoxys.droneci_autoscaler/handlers/main.yml

12 lines
403 B
YAML
Raw Normal View History

2020-12-06 22:13:08 +01:00
---
- name: Restart scaler service
docker_compose:
2020-12-06 22:22:03 +01:00
project_src: "{{ __droneci_autoscaler_workdir }}"
2020-12-06 22:13:08 +01:00
pull: yes
remove_orphans: yes
stopped: "{{ inst.service_stopped | default(droneci_autoscaler_service_stopped) }}"
2021-02-25 11:22:05 +01:00
restarted: "{{ not (inst.service_stopped | default(droneci_autoscaler_service_stopped)) }}"
2020-12-06 22:13:08 +01:00
listen: __droneci_autoscaler_restart
become: True
become_user: root