Move telegraf to its own role
This commit is contained in:
parent
b26fb5d741
commit
1982326553
@ -2,8 +2,6 @@
|
||||
# vim:ft=ansible:
|
||||
---
|
||||
- name: Install and configure Influxdb
|
||||
block:
|
||||
- name: Install influxdb
|
||||
block:
|
||||
- name: Install package
|
||||
apt:
|
||||
@ -15,9 +13,4 @@
|
||||
src: "influxdb.conf"
|
||||
dest: "/etc/influxdb/influxdb.conf"
|
||||
notify: restart influxdb
|
||||
- name: Install telegraf
|
||||
block:
|
||||
- name: Install package
|
||||
apt:
|
||||
deb: "https://dl.influxdata.com/telegraf/releases/telegraf_1.14.2-1_amd64.deb"
|
||||
become: yes
|
||||
|
8
roles/telegraf/handlers/main.yml
Normal file
8
roles/telegraf/handlers/main.yml
Normal file
@ -0,0 +1,8 @@
|
||||
#!/usr/bin/ansible-playbook
|
||||
# vim:ft=ansible:
|
||||
---
|
||||
- name: restart telegraf
|
||||
systemd:
|
||||
name: telegraf
|
||||
state: restarted
|
||||
become: yes
|
20
roles/telegraf/tasks/main.yml
Normal file
20
roles/telegraf/tasks/main.yml
Normal file
@ -0,0 +1,20 @@
|
||||
#!/usr/bin/ansible-playbook
|
||||
# vim:ft=ansible:
|
||||
---
|
||||
- name: Install and configure Telegraf
|
||||
block:
|
||||
- name: Add repo keys by URL
|
||||
apt_key:
|
||||
url: "{{ item }}"
|
||||
loop:
|
||||
- "https://repos.influxdata.com/influxdb.key"
|
||||
- name: Add repos
|
||||
apt_repository:
|
||||
repo: "{{ item }}"
|
||||
loop:
|
||||
- "deb https://repos.influxdata.com/ubuntu {{ ansible_distribution_release }} stable"
|
||||
- name: Install Telegraf
|
||||
apt:
|
||||
name:
|
||||
- telegraf
|
||||
become: yes
|
Loading…
Reference in New Issue
Block a user