dashboard.yml 381 B

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