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
+47
View File
@@ -0,0 +1,47 @@
name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install validation tools
run: |
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install ansible ansible-lint
- name: Migration validation framework
run: |
cd professional-infra/migration-validation-framework
make test
make demo
- name: Linux operations automation
run: |
. .venv/bin/activate
cd professional-infra/linux-operations-automation
ansible-playbook --syntax-check playbooks/*.yml
ansible-lint
make test
- name: Zabbix monitoring and incident response
run: |
. .venv/bin/activate
cd professional-infra/zabbix-monitoring-incident-response
make test
- name: Log observability ELK Grafana
run: |
cd professional-infra/log-observability-elk-grafana
make test