- Создана роль node_exporter для установки на LXC контейнеры - Добавлен плейбук deploy_all_node_exporters.yml - Настроен ansible.cfg для правильного поиска ролей - Node Exporter успешно установлен на все 10 хостов - Prometheus собирает метрики со всех Node Exporters - Все 14 таргетов в состоянии UP
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
|