mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-22 05:01:27 +00:00
Install Prometheus
This commit is contained in:
parent
4cb73e39b0
commit
e1bd3b1eb1
@ -2,6 +2,10 @@
|
||||
collections:
|
||||
- freeipa.ansible_freeipa
|
||||
- community.general
|
||||
- ansible.posix
|
||||
|
||||
|
||||
roles:
|
||||
- name: geerlingguy.mysql
|
||||
- name: cloudalchemy.prometheus
|
||||
- name: cloudalchemy.node-exporter
|
||||
|
38
ansible/playbooks/role-rocky-monitoring.yml
Normal file
38
ansible/playbooks/role-rocky-monitoring.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user