From Git Chaos to GitOps: Building a Local Development Platform
From Git Chaos to GitOps: Building a Local Development Platform TL;DR: A 26,657-line YAML file was killing git performance, so I spent the past week building a complete GitOps infrastructure with k3s + ArgoCD + NATS running locally. Perfect for cost-controlled development without API dependencies. The Problem: When Git Commits Take Forever It started with a simple git commit that took forever. Investigation revealed the culprit: a massive argocd.yaml file with 26,657 lines making every git operation crawl. ...