A city data team needs managed Postgres for an application. A Postgres Operator is installed and exposes a custom Postgres resource. What should the app team create to consume that capability?
Select an answer to reveal the explanation.
Short Explanation
Operators put a custom “order form” in the cluster API—you fill out the Postgres CR and the Operator builds the machinery. Skip hand-rolled StatefulSets when that CR exists. Let the Operator reconcile the database.
Full Explanation
Operators extend Kubernetes with CRDs and controllers that reconcile custom resources into concrete objects (StatefulSets, Services, Secrets, and so on). Application teams consume the provided API by creating the custom resource rather than manually assembling the Operator-owned workload graph. kubeadm configs, node-wide DaemonSets with hostPath, and LimitRanges are not substitutes for creating the Operator’s CR.