GitOps is a methodology that uses Git as the source of truth for your desired state of your applications and infrastructure. A GitOps agent (such as Argo CD) attempts to keep the actual state in-sync with the desired state by continuously applying the changes from Git to your cluster.
However, Ar...