DevOps tutorial - IT technology blog

Managing Kubernetes Cluster Lifecycle Across Environments with Cluster API (CAPI)

Cluster API (CAPI) lets you manage the full lifecycle of Kubernetes clusters — creation, upgrades, and deletion — using declarative YAML and GitOps workflows across AWS, GCP, and bare-metal. This guide walks a junior DevOps engineer through setting up a management cluster, provisioning workload clusters, and performing rolling version upgrades without manual SSH or cloud console access.
Database tutorial - IT technology blog

pg_cron: Schedule PostgreSQL Tasks Inside the Database Without OS Cron

pg_cron is a PostgreSQL extension that schedules SQL jobs — VACUUM, data archiving, threshold notifications — directly inside the database as a background worker. No external cron, no credential sprawl, no silent failures. This guide covers installation, three real-world use cases, and the practices that keep pg_cron solid in production.