1
0
Fork 0
mirror of https://gitlab.com/s3lph/ansible-collection-prometheus synced 2024-10-23 11:56:59 +02:00

Fix task inclusion in prometheus_node

This commit is contained in:
s3lph 2021-11-03 10:45:45 +01:00
parent 27bd6628fb
commit 04625e6dfa
2 changed files with 10 additions and 7 deletions

View file

@ -0,0 +1,9 @@
---
- name: install node exporter
include_tasks: "install/{{ item }}.yml"
with_first_found:
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{% ansible_distribution %}_{% if 'major_release' in ansible_lsb %}{{ ansible_lsb.major_release }}{% else %}{{ ansible_distribution_version}} {% endif %}"
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{{ ansible_distribution }}{% endif %}"
- "{{ ansible_distribution }}_{{ ansible_distribution_version }}"
- "{{ ansible_distribution }}"

View file

@ -15,16 +15,10 @@
- "role::prometheus_node:config"
- name: install node exporter
import_tasks: "install/{{ item }}.yml"
with_first_found:
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{% ansible_distribution %}_{% if 'major_release' in ansible_lsb %}{{ ansible_lsb.major_release }}{% else %}{{ ansible_distribution_version}} {% endif %}"
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{{ ansible_distribution }}{% endif %}"
- "{{ ansible_distribution }}_{{ ansible_distribution_version }}"
- "{{ ansible_distribution }}"
import_tasks: install.yml
tags:
- "role::prometheus_node"
- "role::prometheus_node:install"
- name: install custom textfile collectors
import_tasks: collectors.yml