Install Prometheus

This commit is contained in:
Chris Cowley 2020-12-12 21:34:59 +01:00
parent 4cb73e39b0
commit e1bd3b1eb1
2 changed files with 42 additions and 0 deletions

View File

@ -2,6 +2,10 @@
collections:
- freeipa.ansible_freeipa
- community.general
- ansible.posix
roles:
- name: geerlingguy.mysql
- name: cloudalchemy.prometheus
- name: cloudalchemy.node-exporter

View File

@ -0,0 +1,38 @@
---
# Creates the first monitoring server
# Reccommended specs
# CPU: 2 cores
# Memory: 2GB
# Storage: a piece of string
- name: Install Prometheus
hosts: monitoringserver
become: true
pre_tasks:
- name: Verify if we can run ansible
assert:
that:
- "not no_ansible.stat.exists"
msg: "/etc/no-ansible exists - skipping run on this node"
- name: Install SELinux packages
package:
name: python3-policycoreutils.noarch
state: latest
role:
- role: cloudalchemy.prometheus
post_tasks:
- name: Open firewall
ansible.posix.firewalld:
port: 9090/tcp
permanent: yes
state: enabled
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
mode: '0644'
owner: root
group: root