Paradigm Familiarization β Ops Landscape Overview#
Purpose: Foundational orientation across all Ops paradigms β what they are, how they connect, and where to learn more. Use this as your entry point before diving into individual research docs.
Last updated: 2026-05-26
π How to Use This Document#
This is a synthesis / reading list β not a deep reference. Each paradigm section gives you:
- A concise definition
- Core concepts you need to understand
- Recommended learning resources
- Cross-reference to the relevant research doc in this project
If you’re new to a paradigm: read the section here, then open the linked research doc.
If you’re familiar: skip straight to the research doc.
1. DevOps#
| Attribute | Detail |
|---|---|
| Born | ~2009 |
| 2026 Maturity | β Mature / Baseline |
| Core Artifact | Application code |
| Primary Goal | Faster, reliable software releases |
What It Is#
DevOps bridges development and operations through culture, automation, and measurement. In 2026 it’s the baseline β not a differentiator, but a prerequisite. The Perforce State of DevOps 2026 report finds 70% of organizations say DevOps maturity meaningfully influences AI success.
Core Concepts#
- CI/CD β Continuous Integration (merge + test often) + Continuous Delivery (deploy automatically)
- Infrastructure as Code (IaC) β Manage infrastructure through version-controlled config files
- Monitoring & Observability β Know what’s happening in production
- Collaboration culture β Shared ownership across Dev and Ops
Learning Path (Newcomer)#
- The Phoenix Project β Novel that explains DevOps principles
- The DevOps Handbook β Practical guide
- State of DevOps Report (Perforce 2026) β Current industry data
- Hands-on: Set up a GitHub Actions CI/CD pipeline for a toy app
Project Docs#
- DevOps Landscape 2026 β Full research
- CI/CD & GitOps Tools β Tool comparisons
- IaC Tools β Infrastructure as Code
2. DevSecOps#
| Attribute | Detail |
|---|---|
| Born | ~2012 |
| 2026 Maturity | β Enterprise standard |
| Core Artifact | Code + Security policies |
| Primary Goal | Shift-smart security integrated in pipeline |
What It Is#
DevSecOps integrates security into every phase of the DevOps lifecycle β not as a gate at the end, but as continuous checks throughout. The 2026 trend is “shift-smart” (not “shift-left”): automate what you can, review what needs human judgment.
Core Concepts#
- SAST (Static Application Security Testing) β Analyze source code for vulnerabilities
- DAST (Dynamic Application Security Testing) β Test running applications
- SCA (Software Composition Analysis) β Scan dependencies for known CVEs
- Policy-as-Code β Enforce security rules automatically (OPA, Kyverno)
- Supply Chain Security β SLSA framework, SBOMs, signing
Learning Path#
- OWASP Top 10 β Web app vulnerability categories
- Application Security Verification Standard (ASVS)
- Hands-on: Add Trivy + Semgrep to a CI pipeline
- SLSA Framework β Supply chain levels
Project Docs#
- DevSecOps Landscape 2026 β Full research
- DevSecOps & Security Tools β Tool comparisons
3. DataOps#
| Attribute | Detail |
|---|---|
| Born | ~2014 |
| 2026 Maturity | π Growing |
| Core Artifact | Data pipelines & datasets |
| Primary Goal | Faster, trustworthy data delivery |
What It Is#
DataOps applies DevOps principles (CI/CD, versioning, monitoring) to data pipelines. It treats data as a product with quality gates, observability, and automated testing. Growing alongside AI/ML adoption β bad data = bad models.
Core Concepts#
- Data pipelines β Automated ETL/ELT workflows
- Data versioning β Git-like version control for datasets (DVC, LakeFS)
- Data quality β Schema validation, freshness checks, anomaly detection
- Data catalogs β Metadata management and discovery
Learning Path#
- DataOps: A Beginners Guide β Free introductory guide
- Data Mesh by Zhamak Dehghani β Organizational pattern
- Hands-on: Build a simple data pipeline with dbt + Great Expectations
Project Docs#
- DataOps Landscape 2026 β Full research
4. MLOps#
| Attribute | Detail |
|---|---|
| Born | ~2015 |
| 2026 Maturity | π High growth |
| Core Artifact | Code + Data + Model |
| Primary Goal | Reliable model deployment & retraining |
What It Is#
MLOps manages the full ML lifecycle: experiment tracking, model training, deployment, monitoring, and retraining. In 2026 it commands the highest salary premium β senior MLOps engineers average $205K base.
Core Concepts#
- Experiment tracking β Log parameters, metrics, artifacts (MLflow, W&B)
- Model registry β Versioned model storage with stage promotion
- Model serving β Deploy models as APIs (KServe, Seldon)
- Drift monitoring β Detect data/concept drift in production
- Feature store β Centralized feature engineering and serving (Feast)
Learning Path#
- Designing Machine Learning Systems by Chip Huyen β Best overall MLOps book
- MLOps Course by Made With ML β Free, practical
- Hands-on: Deploy a model with MLflow β KServe β Evidently AI monitoring
- Kubeflow docs β End-to-end MLOps on K8s
Project Docs#
- MLOps Landscape 2026 β Full research
- MLOps & LLMOps Tools β Tool comparisons
5. AIOps#
| Attribute | Detail |
|---|---|
| Born | ~2016 |
| 2026 Maturity | π Rapid adoption |
| Core Artifact | Operational telemetry |
| Primary Goal | AI-driven IT operations automation |
What It Is#
AIOps applies machine learning to IT operations data (logs, metrics, traces) to automate incident detection, root cause analysis, and remediation. In 2026, AIOps is converging with AI-assisted SRE tools like HolmesGPT and K8sGPT.
Core Concepts#
- Anomaly detection β ML models that learn normal behavior patterns
- Incident correlation β Group related alerts into single incidents
- Root cause analysis β Automated RCA from telemetry data
- Self-healing β Automated remediation actions
- Event correlation β Reduce alert noise
Learning Path#
- Gartner AIOps Market Guide β Market overview
- Practical AIOps by PagerDuty β Free guide
- Hands-on: Set up Prometheus + Alertmanager β test with HolmesGPT
Project Docs#
- AIOps Landscape 2026 β Full research
6. FinOps#
| Attribute | Detail |
|---|---|
| Born | ~2017 |
| 2026 Maturity | β Enterprise practice |
| Core Artifact | Cloud cost & usage data |
| Primary Goal | Financial accountability in cloud |
What It Is#
FinOps brings financial governance to cloud spending β combining engineering, finance, and business teams to make cost-data-driven decisions. In 2026, it’s integrated into platform engineering with automated chargeback and showback.
Core Concepts#
- Cost allocation β Tagging resources to teams/projects
- Reserved/committed capacity β Pre-purchase for discounts
- Right-sizing β Match instance types to actual usage
- Spot/preemptible instances β Use spare capacity for non-critical workloads
- Anomaly detection β Alert on unexpected cost spikes
Learning Path#
- FinOps Certified Practitioner β Free certification prep
- Cloud FinOps by J.R. Storment β Comprehensive guide
- Hands-on: Set up Kubecost on a K8s cluster β generate cost reports
Project Docs#
- FinOps Landscape 2026 β Full research
- Cost Management & FinOps Tools β Tool comparisons
7. LLMOps#
| Attribute | Detail |
|---|---|
| Born | ~2022 |
| 2026 Maturity | π Emerging |
| Core Artifact | LLMs + Prompts + RAG |
| Primary Goal | Safe, governed generative AI operations |
What It Is#
LLMOps operationalizes Large Language Models in production β covering prompt engineering, RAG (Retrieval-Augmented Generation), guardrails, cost management, and monitoring for hallucinations. The fastest-evolving Ops paradigm in 2026.
Core Concepts#
- RAG β Augment LLM responses with retrieved context from a knowledge base
- Prompt management β Version, test, and deploy prompts systematically
- Guardrails β Input/output validation, content safety filters
- LLM observability β Trace calls, measure latency, detect hallucinations
- Cost per query β Token usage tracking and optimization
Learning Path#
- LangChain Academy β Free RAG/agent courses
- Building LLM Apps by Valentina Alto β Production patterns
- Hands-on: Build a RAG pipeline with LangChain β deploy with Guardrails
Project Docs#
- LLMOps Landscape 2026 β Full research
- MLOps & LLMOps Tools β Tool comparisons
8. Platform Engineering#
| Attribute | Detail |
|---|---|
| Born | ~2020 |
| 2026 Maturity | β Mainstream |
| Core Artifact | Developer platforms |
| Primary Goal | Internal developer platforms (IDPs) |
What It Is#
Platform Engineering builds Internal Developer Platforms (IDPs) β a layer of tooling and services that abstract infrastructure complexity so developers can ship faster. It’s the fastest-growing job category in the Ops space for 2026.
Core Concepts#
- Developer portals β Self-service UI for infrastructure (Backstage, Port)
- Golden paths β Pre-approved, standardized deployment patterns
- Control planes β Kubernetes-native resource provisioning (Crossplane)
- Service catalogs β Discoverable, documented internal services
- Scorecards β Track team maturity and standards compliance
Learning Path#
- Team Topologies by Matthew Skelton β Org patterns for platform teams
- Platform Engineering on Kubernetes by Mauricio Salatino β Practical implementation
- Hands-on: Set up Backstage with a basic plugin β add service catalog
- CNCF Platform Engineering Maturity Model
Project Docs#
- Platform Engineering 2026 β Full research
- Platform Engineering Tools β Tool comparisons
9. GitOps#
| Attribute | Detail |
|---|---|
| Born | ~2017 |
| 2026 Maturity | β Production proven |
| Core Artifact | Git repositories |
| Primary Goal | Git as single source of truth for infra |
What It Is#
GitOps uses Git as the single source of truth for declarative infrastructure and applications. A GitOps operator (ArgoCD, Flux) continuously syncs the cluster state with the Git repository. It’s a maturity differentiator β 58% of “cloud-native innovators” use it extensively.
Core Concepts#
- Declarative config β Desired state defined in Git, not imperative commands
- Automated sync β Operator reconciles actual β desired state
- Pull-based deployment β Cluster pulls from Git, not CI pushing to cluster
- Drift detection β Operator detects and corrects manual changes
Learning Path#
- GitOps Principles (CNCF) β Official definition and principles
- ArgoCD docs β Practical hands-on learning
- Hands-on: Deploy an app to K8s using ArgoCD with Git as source of truth
Project Docs#
- GitOps Tools β Tool comparisons
- DevOps Landscape 2026 β GitOps section
10. SRE#
| Attribute | Detail |
|---|---|
| Born | ~2003 |
| 2026 Maturity | β Mature discipline |
| Core Artifact | Reliability metrics |
| Primary Goal | Service reliability through SLIs/SLOs |
What It Is#
Site Reliability Engineering applies software engineering to operations problems. Born at Google, SRE uses service level indicators (SLIs), objectives (SLOs), and error budgets to balance reliability with feature velocity.
Core Concepts#
- SLI β A quantifiable measure of service performance (latency, error rate)
- SLO β Target threshold for an SLI (e.g., 99.9% availability)
- Error budget β The acceptable amount of unreliability (100% - SLO)
- Toil reduction β Automate repetitive operational work
- Incident management β Structured response with blameless postmortems
Learning Path#
- Site Reliability Engineering (Google SRE Book) β Free online
- The Site Reliability Workbook β Practical patterns
- Hands-on: Define SLIs/SLOs for a service β set up burn-rate alerts
Project Docs#
- Referenced across multiple research docs (AIOps, Observability)
π§ The Ops Landscape β How They Relate#
flowchart BT
A["ποΈ Core DevOps Foundation<br/>CI/CD β’ IaC β’ K8s β’ GitOps β’ SRE β’ Observability"]
B["π DevSecOps<br/>Policy-as-Code β’ SAST/DAST β’ Trivy β’ Falco"]
C["π€ Data + AI Ops<br/>DataOps β’ MLOps β’ LLMOps β’ MLflow β’ LangChain"]
D["π° FinOps + AIOps<br/>Cloud Cost β’ Auto-remediation β’ Kubecost"]
E["π― Platform Engineering<br/>Backstage β’ Crossplane β’ Port β’ Internal Developer Platforms"]
A --> B
A --> C
A --> D
B --> E
C --> E
D --> E2026 convergence trends:
| Trend | What’s Happening |
|---|---|
| DevOps β Platform Engineering | Core DevOps skills are now wrapped into IDP self-service layers |
| DevSecOps β Policy-as-Code | Security rules automated via OPA/Kyverno, not manual reviews |
| MLOps + LLMOps β AI Ops | Unified platforms managing both predictive and generative AI |
| AIOps β Autonomous Ops | SRE tools augmented with AI for self-healing |
| FinOps β Embedded cost | Cost management built into platform engineering |
π Recommended Reading Order#
If you’re new to the Ops landscape, learn in this order:
1. DevOps β Foundation (everything builds on this)
2. GitOps β How infra is managed in practice
3. DevSecOps β Security is non-negotiable
4. Platform Engineering β Where DevOps teams are heading
5. SRE β Reliability mindset
6. Observability β How you know it's working
7. FinOps β Cost governance
8. DataOps β Data pipeline operations
9. MLOps β ML lifecycle management
10. LLMOps β Generative AI (if relevant to your clients)
11. AIOps β AI for IT operationsπ Essential Reading (Outside This Project)#
Books#
| Title | Author | Covers |
|---|---|---|
| The DevOps Handbook | Gene Kim et al. | Core DevOps principles |
| Accelerate | Nicole Forsgren et al. | Metrics-driven DevOps |
| Team Topologies | Matthew Skelton | Org patterns for platform teams |
| Designing Machine Learning Systems | Chip Huyen | MLOps end-to-end |
| Cloud FinOps | J.R. Storment | Cloud cost management |
| Site Reliability Engineering | SRE foundations |
Industry Reports (2026)#
| Report | Publisher | Why Read |
|---|---|---|
| State of DevOps 2026 | Perforce | Broadest DevOps maturity survey |
| CNCF Annual Survey 2025 | CNCF | Cloud-native adoption trends |
| CNCF Technology Radar Q1 2026 | CNCF | Emerging tech assessment |
| Gartner Top Strategic Tech Trends 2026 | Gartner | Enterprise direction |
Academic Sources#
- [arXiv:2401.XXXXX] β Systematic literature reviews on each paradigm
- [ACM Computing Surveys] β Comprehensive survey papers
- Full list in Academic References
π Project Reference Map#
| Paradigm | Research Doc | Extended List | Guide |
|---|---|---|---|
| DevOps | β Landscape | β CI/CD, IaC, Container, Observability, Messaging | β Roadmap |
| GitOps | β (in DevOps doc) | β‘ Pending | - |
| DevSecOps | β Landscape | β Security Tools | - |
| DataOps | β Landscape | - | β |
| MLOps | β Landscape | β‘ Pending | - |
| AIOps | β Landscape | β AI for DevOps | - |
| FinOps | β Landscape | β‘ Pending | - |
| LLMOps | β Landscape | β‘ Pending | - |
| Platform Eng | β Landscape | β‘ Pending | - |
| SRE | β (across docs) | - | β |
β What’s Next After This Document#
Once you’ve oriented yourself across all paradigms, proceed to:
- Phase 1 (Core Research) β Read the research docs for paradigms most relevant to your clients
- Phase 2 (Extended Lists) β Use tool comparison lists for vendor/client evaluations
- Phase 3 (README) β The curated list for quick reference
- Phase 4 (Guides) β Learning roadmaps and contribution guides
This document was created as part of Phase 0 β Foundation. It synthesizes knowledge across all Ops paradigms to build foundational understanding before deep research.