Initial commit: Ansible configuration for monitoring stack

Contains:
- Production inventory (inventories/production/hosts)
- VictoriaMetrics installation (playbooks/monitoring/install_victoriametrics.yml)
- Vault setup and secrets management (playbooks/vault/)
- Base system configuration (playbooks/infrastructure/)
- Directory structure for monitoring components
This commit is contained in:
Freazzzing
2026-02-02 11:22:24 +00:00
commit 30d35bc401
12 changed files with 548 additions and 0 deletions

View File

@ -0,0 +1,21 @@
---
- name: Install essential packages
hosts: all_except_ansible
become: yes
tasks:
- name: Install system utilities
apt:
name:
- curl
- wget
- git
- htop
- net-tools
- ufw
- software-properties-common
- ca-certificates
- gnupg
- lsb-release
state: present
update_cache: yes