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
22 lines
418 B
YAML
22 lines
418 B
YAML
---
|
|
- 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
|