🎁 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

ELK Stack
A popular log management platform combining Elasticsearch (search), Logstash (processing), and Kibana (visualization).
Environment Variable
A dynamic value stored outside the application code that configures behavior without hardcoding sensitive or environment-specific data.
Feature Flag
A technique that allows enabling or disabling features in production without deploying new code, enabling safe rollouts and A/B testing.
Jenkins
An open-source automation server for building, testing, and deploying software through configurable CI/CD pipelines.
Nginx
A high-performance web server and reverse proxy known for its stability, low resource usage, and ability to handle many concurrent connections.
Monitoring
The practice of collecting, analyzing, and alerting on system metrics and logs to ensure application health and performance.
View All DevOps Terms →