🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

DevOps Intermediate

What is GitOps?

A practice where Git repositories serve as the single source of truth for both application code and infrastructure configuration.

GitOps extends Infrastructure as Code by using Git as the operational mechanism. All changes to infrastructure and applications go through Git pull requests. Automated agents (ArgoCD, Flux) ensure the live system matches the Git repository.

Benefits include audit trail (Git history), rollback (git revert), collaboration (pull requests), and consistency (single source of truth). GitOps is the dominant deployment pattern for Kubernetes-based environments.

Related Terms

Kubernetes
An open-source container orchestration platform that automates deploying, scaling, and managing containerized applications.
Observability
The ability to understand a system's internal state from its external outputs through metrics, logs, and traces.
Artifact
A packaged, versioned output of a build process — such as a Docker image, JAR file, or compiled binary — ready for deployment.
Microservices
An architectural style where an application is composed of small, independent services that communicate over APIs.
ELK Stack
A popular log management platform combining Elasticsearch (search), Logstash (processing), and Kibana (visualization).
Health Check
An endpoint or mechanism that reports whether an application is running correctly and ready to handle requests.
View All DevOps Terms →