mono-infrastructure/ansible/playbooks/role-rocky-monitoring.yml

65 lines
1.6 KiB
YAML
Raw Normal View History

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
2021-01-18 03:46:06 +00:00
hosts: monitoringservers
2020-12-12 20:34:59 +00:00
become: true
2021-01-18 03:46:06 +00:00
vars_files:
- vars/vaults/encpass.yml
- vars/monitoring.yml
- vars/monitoring/alertmanager.yml
- vars/monitoring/grafana.yml
- vars/monitoring/prometheus.yml
# This is to try to avoid the handler issue in pre/post tasks
handlers:
- import_tasks: handlers/main.yml
2020-12-12 20:34:59 +00:00
pre_tasks:
2021-01-18 03:46:06 +00:00
- name: Check if ansible cannot be run here
stat:
path: /etc/no-ansible
register: no_ansible
2020-12-12 20:34:59 +00:00
- name: Verify if we can run ansible
assert:
that:
- "not no_ansible.stat.exists"
success_msg: "We are able to run on this node"
fail_msg: "/etc/no-ansible exists - skipping run on this node"
2020-12-12 20:34:59 +00:00
- 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
2021-01-18 03:46:06 +00:00
roles:
# - role: rockylinux.ipagetcert
# state: present
2020-12-12 20:34:59 +00:00
- role: cloudalchemy.prometheus
2021-01-18 03:46:06 +00:00
state: present
- role: cloudalchemy.alertmanager
2021-01-18 03:46:06 +00:00
state: present
- role: cloudalchemy.grafana
state: present
2020-12-12 20:34:59 +00:00
post_tasks:
2021-01-18 03:46:06 +00:00
- name: Open firewalld ports
ansible.posix.firewalld:
port: "{{ item.port }}"
permanent: "{{ item.permanent }}"
state: "{{ item.state }}"
loop: "{{ monitoring_server_firewall_rules }}"
2020-12-12 20:34:59 +00:00
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
mode: '0644'
owner: root
group: root
...