Advanced Kubernetes Ops #crd#operator#custom-resource#kubernetes

CRD & Operator Language

5 exercises — Explain CRDs, operator reconciliation loops, custom resource documentation, status subresources, and the operator vs Helm trade-off.

0 / 5 completed
Quick reference: CRD and operator vocabulary
  • CRD — CustomResourceDefinition; extends the Kubernetes API with a new resource kind and schema
  • Reconciliation loop — operator pattern: watch → compare desired vs. actual → act → repeat
  • Status subresource — written by the operator to reflect current health; check conditions and reason fields
1 / 5

A backend engineer unfamiliar with Kubernetes asks what a Custom Resource Definition (CRD) does. Which explanation is most accurate?