Skip to main content
devopsinfo.in

Articles

Long-form notes on the systems I build and operate — pipelines, databases, Linux internals and the occasional incident post-mortem.

Search and filter articles

Category
Tag

Showing all 4 articles

CI/CD7 min read

A Beginner-Friendly Guide to CI/CD with GitHub Actions

Build a pipeline you can explain: what CI and CD actually mean, how a GitHub Actions workflow is structured, and how to get from a test run to a safe deployment.

  • #GitHub Actions
  • #CI/CD
  • #Docker
Databases8 min read

Practical Read/Write Splitting with MySQL Replicas

Adding read replicas is easy; routing to them safely is not. How to split reads and writes without letting replication lag turn into user-visible bugs.

  • #MySQL
  • #Replication
  • #Scaling