From c85806e3289b5e207d51d382f8dc75edad04404d Mon Sep 17 00:00:00 2001 From: Kumar Damani Date: Tue, 23 Aug 2022 12:02:28 -0400 Subject: switched to alpine initial commit --- roles/monitoring/tasks/main.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 roles/monitoring/tasks/main.yaml (limited to 'roles/monitoring/tasks/main.yaml') diff --git a/roles/monitoring/tasks/main.yaml b/roles/monitoring/tasks/main.yaml new file mode 100644 index 0000000..268659b --- /dev/null +++ b/roles/monitoring/tasks/main.yaml @@ -0,0 +1,19 @@ +--- + +- name: 'Ensure monitoring root dir exists' + file: + path: '{{ monitoring_root_dir }}' + state: 'directory' + mode: '755' + +- name: 'Setup the Node Exporter' + import_tasks: 'node.yaml' + +- name: 'Setup the Blackbox Exporter' + import_tasks: 'blackbox.yaml' + +- name: 'Setup the ZFS Exporter' + import_tasks: 'zfs.yaml' + +- name: 'Setup Prometheus' + import_tasks: 'prometheus.yaml' -- cgit v1.2.3