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

33 lines
744 B
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
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
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