mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-12-22 10:58:29 +00:00
Merge pull request #186 from chriscowley/main
WIP: Added some code to install a Prometheus server
This commit is contained in:
commit
107081378b
11
ansible/playbooks/requirements.yml
Normal file
11
ansible/playbooks/requirements.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
collections:
|
||||||
|
- freeipa.ansible_freeipa
|
||||||
|
- community.general
|
||||||
|
- ansible.posix
|
||||||
|
|
||||||
|
|
||||||
|
roles:
|
||||||
|
- name: geerlingguy.mysql
|
||||||
|
- name: cloudalchemy.prometheus
|
||||||
|
- name: cloudalchemy.node-exporter
|
32
ansible/playbooks/role-rocky-monitoring.yml
Normal file
32
ansible/playbooks/role-rocky-monitoring.yml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
# 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: Touching run file that ansible has ran here
|
||||||
|
file:
|
||||||
|
path: /var/log/ansible.run
|
||||||
|
state: touch
|
||||||
|
mode: '0644'
|
||||||
|
owner: root
|
||||||
|
group: root
|
8
ansible/playbooks/vars/monitoring.yml
Normal file
8
ansible/playbooks/vars/monitoring.yml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
#prometheus_targets:
|
||||||
|
# node:
|
||||||
|
# - targets:
|
||||||
|
# - host1
|
||||||
|
# - host2
|
||||||
|
# labels:
|
||||||
|
# env: production
|
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
roles:
|
roles:
|
||||||
- name: geerlingguy.mysql
|
- name: geerlingguy.mysql
|
||||||
|
# monitoring
|
||||||
|
- name: cloudalchemy.node-exporter
|
||||||
|
- name: cloudalchemy.prometheus
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
# freeipa
|
# freeipa
|
||||||
|
Loading…
Reference in New Issue
Block a user