Merge pull request #186 from chriscowley/main

WIP: Added some code to install a Prometheus server
This commit is contained in:
Louis Abel 2020-12-12 14:33:13 -07:00 committed by GitHub
commit 107081378b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,11 @@
---
collections:
- freeipa.ansible_freeipa
- community.general
- ansible.posix
roles:
- name: geerlingguy.mysql
- name: cloudalchemy.prometheus
- name: cloudalchemy.node-exporter

View 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

View File

@ -0,0 +1,8 @@
---
#prometheus_targets:
# node:
# - targets:
# - host1
# - host2
# labels:
# env: production

View File

@ -2,6 +2,9 @@
roles:
- name: geerlingguy.mysql
# monitoring
- name: cloudalchemy.node-exporter
- name: cloudalchemy.prometheus
collections:
# freeipa