GitOps என்பது continuous deployment க்கான ஒரு approach (குறிப்பாக Kubernetes க்கு) ஆகும், இதில் Git என்பது infrastructure மற்றும் applications இன் விரும்பிய state க்கான single source of truth ஆகவும், ஒரு automated agent தொடர்ந்து actual state ஐ Git உடன் reconciles செய்வதும் ஆகும். மாற்றங்கள் Git மூலம் செய்யப்படுகிறது, மற்றும் system அவற்றை pull செய்து apply செய்கிறது.
GitOps model
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.
