2020-12-12 20:34:59 +00:00
|
|
|
---
|
|
|
|
# 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
|
2020-12-13 10:09:00 +00:00
|
|
|
state: present
|
2020-12-12 20:34:59 +00:00
|
|
|
|
|
|
|
role:
|
|
|
|
- role: cloudalchemy.prometheus
|
2020-12-18 21:03:49 +00:00
|
|
|
- role: cloudalchemy.alertmanager
|
2020-12-12 20:34:59 +00:00
|
|
|
|
|
|
|
post_tasks:
|
|
|
|
- name: Touching run file that ansible has ran here
|
|
|
|
file:
|
|
|
|
path: /var/log/ansible.run
|
|
|
|
state: touch
|
|
|
|
mode: '0644'
|
|
|
|
owner: root
|
|
|
|
group: root
|
2020-12-18 21:03:49 +00:00
|
|
|
|
|
|
|
- name: Install Prometheus Node Exporter
|
|
|
|
hosts: all
|
|
|
|
become: true
|
|
|
|
|
|
|
|
pre_tasks:
|
|
|
|
- name: Install SELinux packages
|
|
|
|
package:
|
|
|
|
name: python3-policycoreutils.noarch
|
|
|
|
state: present
|
|
|
|
|
|
|
|
roles:
|
|
|
|
- role: cloudalchemy.node-exporter
|
|
|
|
state: present
|
|
|
|
|
|
|
|
post_tasks:
|
|
|
|
- name: Open firewall for node-exporter
|
|
|
|
ansible.posix.firewalld:
|
|
|
|
port: 9100/tcp
|
|
|
|
permanent: yes
|
|
|
|
state: enabled
|