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:

  1. A concise definition
  2. Core concepts you need to understand
  3. Recommended learning resources
  4. 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#

AttributeDetail
Born~2009
2026 Maturityβœ… Mature / Baseline
Core ArtifactApplication code
Primary GoalFaster, 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)#

  1. The Phoenix Project β†’ Novel that explains DevOps principles
  2. The DevOps Handbook β†’ Practical guide
  3. State of DevOps Report (Perforce 2026) β†’ Current industry data
  4. Hands-on: Set up a GitHub Actions CI/CD pipeline for a toy app

Project Docs#


2. DevSecOps#

AttributeDetail
Born~2012
2026 Maturityβœ… Enterprise standard
Core ArtifactCode + Security policies
Primary GoalShift-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#

  1. OWASP Top 10 β†’ Web app vulnerability categories
  2. Application Security Verification Standard (ASVS)
  3. Hands-on: Add Trivy + Semgrep to a CI pipeline
  4. SLSA Framework β†’ Supply chain levels

Project Docs#


3. DataOps#

AttributeDetail
Born~2014
2026 MaturityπŸ”„ Growing
Core ArtifactData pipelines & datasets
Primary GoalFaster, 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#

  1. DataOps: A Beginners Guide β†’ Free introductory guide
  2. Data Mesh by Zhamak Dehghani β†’ Organizational pattern
  3. Hands-on: Build a simple data pipeline with dbt + Great Expectations

Project Docs#


4. MLOps#

AttributeDetail
Born~2015
2026 MaturityπŸ”„ High growth
Core ArtifactCode + Data + Model
Primary GoalReliable 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#

  1. Designing Machine Learning Systems by Chip Huyen β†’ Best overall MLOps book
  2. MLOps Course by Made With ML β†’ Free, practical
  3. Hands-on: Deploy a model with MLflow β†’ KServe β†’ Evidently AI monitoring
  4. Kubeflow docs β†’ End-to-end MLOps on K8s

Project Docs#


5. AIOps#

AttributeDetail
Born~2016
2026 MaturityπŸ”„ Rapid adoption
Core ArtifactOperational telemetry
Primary GoalAI-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#

  1. Gartner AIOps Market Guide β†’ Market overview
  2. Practical AIOps by PagerDuty β†’ Free guide
  3. Hands-on: Set up Prometheus + Alertmanager β†’ test with HolmesGPT

Project Docs#


6. FinOps#

AttributeDetail
Born~2017
2026 Maturityβœ… Enterprise practice
Core ArtifactCloud cost & usage data
Primary GoalFinancial 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#

  1. FinOps Certified Practitioner β†’ Free certification prep
  2. Cloud FinOps by J.R. Storment β†’ Comprehensive guide
  3. Hands-on: Set up Kubecost on a K8s cluster β†’ generate cost reports

Project Docs#


7. LLMOps#

AttributeDetail
Born~2022
2026 MaturityπŸ†• Emerging
Core ArtifactLLMs + Prompts + RAG
Primary GoalSafe, 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#

  1. LangChain Academy β†’ Free RAG/agent courses
  2. Building LLM Apps by Valentina Alto β†’ Production patterns
  3. Hands-on: Build a RAG pipeline with LangChain β†’ deploy with Guardrails

Project Docs#


8. Platform Engineering#

AttributeDetail
Born~2020
2026 Maturityβœ… Mainstream
Core ArtifactDeveloper platforms
Primary GoalInternal 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#

  1. Team Topologies by Matthew Skelton β†’ Org patterns for platform teams
  2. Platform Engineering on Kubernetes by Mauricio Salatino β†’ Practical implementation
  3. Hands-on: Set up Backstage with a basic plugin β†’ add service catalog
  4. CNCF Platform Engineering Maturity Model

Project Docs#


9. GitOps#

AttributeDetail
Born~2017
2026 Maturityβœ… Production proven
Core ArtifactGit repositories
Primary GoalGit 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#

  1. GitOps Principles (CNCF) β†’ Official definition and principles
  2. ArgoCD docs β†’ Practical hands-on learning
  3. Hands-on: Deploy an app to K8s using ArgoCD with Git as source of truth

Project Docs#


10. SRE#

AttributeDetail
Born~2003
2026 Maturityβœ… Mature discipline
Core ArtifactReliability metrics
Primary GoalService 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#

  1. Site Reliability Engineering (Google SRE Book) β†’ Free online
  2. The Site Reliability Workbook β†’ Practical patterns
  3. 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 --> E

2026 convergence trends:

TrendWhat’s Happening
DevOps β†’ Platform EngineeringCore DevOps skills are now wrapped into IDP self-service layers
DevSecOps β†’ Policy-as-CodeSecurity rules automated via OPA/Kyverno, not manual reviews
MLOps + LLMOps β†’ AI OpsUnified platforms managing both predictive and generative AI
AIOps β†’ Autonomous OpsSRE tools augmented with AI for self-healing
FinOps β†’ Embedded costCost management built into platform engineering

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#

TitleAuthorCovers
The DevOps HandbookGene Kim et al.Core DevOps principles
AccelerateNicole Forsgren et al.Metrics-driven DevOps
Team TopologiesMatthew SkeltonOrg patterns for platform teams
Designing Machine Learning SystemsChip HuyenMLOps end-to-end
Cloud FinOpsJ.R. StormentCloud cost management
Site Reliability EngineeringGoogleSRE foundations

Industry Reports (2026)#

ReportPublisherWhy Read
State of DevOps 2026PerforceBroadest DevOps maturity survey
CNCF Annual Survey 2025CNCFCloud-native adoption trends
CNCF Technology Radar Q1 2026CNCFEmerging tech assessment
Gartner Top Strategic Tech Trends 2026GartnerEnterprise 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#

ParadigmResearch DocExtended ListGuide
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:

  1. Phase 1 (Core Research) β†’ Read the research docs for paradigms most relevant to your clients
  2. Phase 2 (Extended Lists) β†’ Use tool comparison lists for vendor/client evaluations
  3. Phase 3 (README) β†’ The curated list for quick reference
  4. 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.