Category: Kubernetes, Docker, Jenkins, github, yaml

GitOps is code-based infrastructure and operational procedures that rely on Git as a source control system. It leverages Git as the single source of truth, and control mechanism for creating, updating, and deleting system architecture. GitOps is a methodology of bringing operations part of DevOps closer to developer by versioning your application source code and Deployment Configuration in Git. By doing this, Git becomes the single source of truth for all your applications source code and deployment configuration.

On finding some delta from the previous stored state in Git, the flux operator checks out the config code and applies it onto Kubernetes.

Related Articles