Jacob Babor
45904e221d
Now the only thing I'm missing is an alerting system that actually works and we'll be off to the races.
9 lines
287 B
YAML
9 lines
287 B
YAML
#!/usr/bin/env ansible-playbook
|
|
# vim:ft=ansible:
|
|
- name: restart prometheus container
|
|
docker_container: name="prometheus" state=started restart=yes
|
|
become: yes
|
|
- name: restart blackbox container
|
|
docker_container: name="prometheus-blackbox" state=started restart=yes
|
|
become: yes
|