GitOps एक दृष्टिकोन आहे सतत तैनाती साठी (विशेषतः Kubernetes साठी) जेथे Git हा आवश्यक अवस्थेचा एकमेव स्रोत असतो infrastructure आणि applications साठी, आणि एक स्वयंचलित agent सतत reconciles वास्तविक अवस्था Git शी जुळवून घेते. बदल Git द्वारे केले जातात, आणि सिस्टम त्यांना खेचते आणि लागू करते.
GitOps मॉडेल
Git holds the DESIRED STATE (declarative configs: Kubernetes manifests, Helm charts, etc.):
→ an AGENT in the cluster continuously COMPARES actual state vs Git (desired state)
→ it RECONCILES: automatically applies changes to make reality match Git
→ to deploy/change: commit to Git → the agent detects and applies it (PULL-based)
→ Git = single source of truth; the system continuously converges to it.
