Problem Statement
What is GitOps in the context of Kubernetes deployments?
Explanation
GitOps is a paradigm where your infrastructure and application desired state (manifests, Helm charts) live in Git. A controller watches for changes and reconciles the cluster to match that state. This offers higher auditability, controlled roll-backs and aligns operations with developer workflows.
