dashboard.yml 415 B

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