mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-10 16:01:23 +00:00
33 lines
744 B
YAML
33 lines
744 B
YAML
---
|
|
# 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: present
|
|
|
|
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
|