During a rollout of the city’s code-enforcement API, which statement best describes the ReplicaSet relative to the Deployment authors use day to day?
Select an answer to reveal the explanation.
Short Explanation
Think of the ReplicaSet as the current shift roster; the Deployment is the manager that opens and closes shifts during a rollout. You live in Deployment manifests—hand-authoring ReplicaSets skips rollout history.
Full Explanation
A ReplicaSet maintains a set of Pods for a given template. Deployments create, scale, and retire ReplicaSets to implement rolling updates and revision history. Everyday authorship targets Deployments, not raw ReplicaSets. ReplicaSets do not replace Services, and they are first-class on OKE.