dashboard.yml 457 B

1234567891011121314151617181920
  1. ---
  2. # tasks/Debian/dashboard.yml: Deployment of the Uchiwa dashboard
  3. # Specific to Debian
  4. - name: Include ansible_distribution vars
  5. include_vars: "{{ ansible_distribution }}.yml"
  6. tags: dashboard
  7. - name: Install uchiwa
  8. tags: dashboard
  9. apt:
  10. name: uchiwa
  11. state: present
  12. - name: Deploy Uchiwa config
  13. tags: dashboard
  14. template:
  15. src: uchiwa_config.json.j2
  16. dest: "{{ sensu_config_path }}/uchiwa.json"
  17. notify: restart uchiwa service