16 lines
281 B
YAML
16 lines
281 B
YAML
|
|
---
|
||
|
|
- name: Deploy Node Exporter to ALL hosts
|
||
|
|
hosts: all
|
||
|
|
become: yes
|
||
|
|
gather_facts: yes
|
||
|
|
|
||
|
|
pre_tasks:
|
||
|
|
- name: Update apt cache
|
||
|
|
apt:
|
||
|
|
update_cache: yes
|
||
|
|
when: ansible_os_family == 'Debian'
|
||
|
|
|
||
|
|
roles:
|
||
|
|
- role: node_exporter
|
||
|
|
tags: node_exporter
|