Initial CV-aligned infrastructure portfolio
ci / validate (push) Failing after 1m8s

Rework portfolio around Linux operations, Zabbix monitoring, migration validation, and ELK/Grafana log observability.

Add AAP-style LVM resize workflow, Zabbix server/proxy/agent automation assets, Linux/AIX monitoring templates, and updated validation CI.
This commit is contained in:
Mateusz Suski
2026-05-04 17:37:24 +00:00
commit 35e6b139fc
114 changed files with 6422 additions and 0 deletions
@@ -0,0 +1,25 @@
---
- name: Create Zabbix server config directory
ansible.builtin.file:
path: /etc/zabbix
state: directory
owner: root
group: root
mode: "0755"
- name: Render Zabbix server configuration example
ansible.builtin.template:
src: zabbix_server.conf.j2
dest: /etc/zabbix/zabbix_server.conf
owner: root
group: root
mode: "0644"
- name: Report Zabbix server maintenance settings
ansible.builtin.debug:
msg:
listen_port: "{{ zabbix_server_listen_port }}"
cache_size: "{{ zabbix_server_cache_size }}"
housekeeping_frequency: "{{ zabbix_server_housekeeping_frequency }}"
history_retention_days: "{{ zabbix_server_history_retention_days }}"
trend_retention_days: "{{ zabbix_server_trend_retention_days }}"