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:
+25
@@ -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 }}"
|
||||
Reference in New Issue
Block a user