惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
博客园 - 【当耐特】
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
G
Google Developers Blog
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
J
Java Code Geeks
U
Unit 42
云风的 BLOG
云风的 BLOG
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
V
V2EX
T
Tailwind CSS Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
What is GitOps? IaC, Git, and the Future of Cloud-Native CD
James Lee · 2026-05-19 · via DEV Community

GitOps was first introduced by Weaveworks in 2017. You've probably heard the term — but do you really know what it means, and how it relates to DevOps? Let's break it down from first principles.


1. The Foundation: Infrastructure as Code (IaC)

Before diving into GitOps, you need to understand Infrastructure as Code (IaC).

IaC means defining your infrastructure using code rather than manual processes. Engineers can treat infrastructure the same way they treat application code:

  • ✅ Write declarative config files that are easy to version, edit, and distribute
  • ✅ Guarantee identical environments every time you provision
  • ✅ Use version control — every change is tracked, auditable, and reversible
  • ✅ Break infrastructure into modular components that can be composed and automated

In a broader sense, IaC isn't limited to servers — it covers networking, security, configuration management, and more. This broader scope is often called "X as Code".

Real-world example: Want to provision servers on AWS, configure networking, deploy a Kubernetes cluster, and manage workloads? Just define your Terraform or Ansible configs alongside your Kubernetes manifests — no manual clicking, no snowflake environments.


2. So, What Exactly is GitOps?

GitOps = IaC + Git + CI/CD

GitOps is version-controlled CI/CD built on top of IaC. Its core principle is straightforward:

Git is the single source of truth for both infrastructure and application configuration.

Any change made outside of Git — like manually editing a live cluster config — is either rejected or automatically reverted. Git is the only way in.

The declarative config in your Git repo describes the desired state of your target environment. If the actual state of your cluster drifts from what's defined in Git, Kubernetes reconcilers automatically bring it back in line — no human intervention required.

This model also supports modern development velocity. Organizations with mature DevOps cultures deploy to production hundreds of times per day. GitOps provides the version control, code review, and automated CI/CD pipelines to make that pace sustainable and safe.


3. GitOps vs DevOps — What's the Difference?

These two are not in conflict. Here's the clearest way to think about it:

  • DevOps is a culture and philosophy
  • GitOps is a technical implementation that supports and accelerates that culture

That said, there are meaningful differences worth understanding:

Dimension GitOps DevOps
Orientation Goal-driven (maintain desired state) Practice-driven (promote best practices)
Operational style Declarative only Declarative + Imperative
Environment scope Cloud-native / container-first VMs, bare metal, containers
CD model Git-centric, Pull-based Flexible (Push or Pull)

In short: GitOps redefines CI/CD for cloud-native environments, using Git as an immutable state declaration to accelerate continuous deployment while improving security and auditability.


4. The Four Core Principles of GitOps

4.1 Declarative

The desired state of the entire system must be expressed declaratively. Kubernetes is the most prominent example — but it's not the only one. Any system that can be described declaratively can be managed with GitOps.

4.2 Versioned & Immutable

All state declarations live in Git. Git becomes the single source of truth, preserving a complete version history for easy rollback. You can also use SSH keys to sign commits, providing strong cryptographic guarantees of authorship and provenance.

4.3 Automatically Applied

Any change to the desired state in Git is automatically applied to the system — no need to install kubectl locally, no need to manually configure Kubernetes auth credentials. The pipeline handles it.

4.4 Continuously Reconciled

An agent runs inside the target environment (typically a Kubernetes Operator). It continuously compares the actual state against the desired state in Git. If drift is detected — even from a manual change made directly to the cluster — the agent automatically corrects it. This goes beyond Kubernetes' built-in self-healing.

The GitOps Workflow End-to-End

Developer forks repo → modifies config → opens Pull Request
        ↓
CI Pipeline: validate configs → run tests → build & push OCI image
        ↓
Authorized reviewer merges PR into main branch
        ↓
CD Pipeline: apply changes to target system (K8s cluster / AWS / etc.)

Enter fullscreen mode Exit fullscreen mode

The entire process is automated, transparent, and collaborative. Compare this to the traditional model — one engineer making changes from their laptop, with no visibility, no review, and no audit trail.


5. Push vs Pull: Two CD Deployment Models

5.1 Push Mode

Most traditional CI/CD tools (Jenkins, CircleCI, GitHub Actions with kubectl) use Push-based deployment: after CI completes, a command pushes changes to the target environment.

The problems with Push mode:

  • Requires extra tooling (kubectl, cloud CLIs) installed inside CI
  • Requires Kubernetes/cloud credentials stored in CI — outside the cluster's security boundary
  • No awareness of deployment state or configuration drift
  • The CI system becomes an attractive attack vector for credential theft

5.2 Pull Mode (GitOps-Native)

An agent (Operator) is deployed inside the target cluster. It periodically polls Git, compares desired vs actual state, and self-corrects any drift.

Git Repo (desired state)
      ↑  polls periodically
Argo CD / Flux CD  (in-cluster agent)
      ↓  applies automatically
Kubernetes Cluster (actual state)

Enter fullscreen mode Exit fullscreen mode

No external credentials needed. No out-of-band changes can persist. This is true immutable infrastructure — Git is the only lever that moves the system.

Popular Pull-mode CD tools: Argo CD, Flux CD, ks-devops


6. Why GitOps? Four Key Advantages

🔐 Stronger Security Posture

No Kubernetes or cloud credentials need to exist outside the cluster. The in-cluster agent (Argo CD / Flux) only needs read access to Git. Git's cryptographic signing ensures every change has a verified author and origin.

📌 Git as the Single Source of Truth

Everything — apps, infrastructure, config — lives in Git. Version history, audit logs, and rollback capability come for free. No more kubectl archaeology to figure out what changed and when.

⚡ Higher Developer Productivity

Git is already part of every developer's daily workflow. GitOps removes the friction between writing code and deploying it, accelerating iteration cycles and reducing time-to-production.

📋 Compliance-Friendly by Design

Every infrastructure change goes through a Pull Request — meaning code review, approval workflows, and a complete audit trail, just like application code. Compliance teams love this.


7. Summary

GitOps is the natural evolution of DevOps culture for cloud-native environments. By using Git as the immutable source of truth and adopting a Pull-based CD model, you get:

  • Automated, transparent, and auditable deployments
  • A significantly stronger security posture
  • Built-in drift detection and self-healing
  • A workflow that scales from one team to hundreds

Because GitOps is inherently declarative, it's a perfect fit for Kubernetes — which is designed exactly the same way. If you're running workloads on Kubernetes, GitOps isn't just a nice-to-have — it's the right way to operate.


Next in this series: GitOps vs DevOps — A Deeper Comparison (Part 2)


If you found this useful, follow the series — we'll be covering Tekton and Argo CD hands-on in upcoming articles.