main.yml 312 B

1234567891011121314151617
  1. ---
  2. - include: download.yml
  3. - include: install.yml
  4. when: not prometheus_skip_install
  5. - include: configure.yml
  6. - name: ensure prometheus service is started and enabled
  7. become: true
  8. systemd:
  9. daemon_reload: true
  10. name: prometheus
  11. state: started
  12. enabled: true
  13. - include: alertmanager.yml