A parks department team deploys containers on OKE. Which split correctly describes how orchestration separates decision-making from execution?
Select an answer to reveal the explanation.
Short Explanation
The control plane is the brain; workers are the hands. Developers talk to the API about desired state, and workers actually run the containers. You do not SSH host-by-host to start every process.
Full Explanation
Orchestration architectures separate a durable control plane (API server, scheduler, desired-state store) from worker nodes that execute containers. Developers and controllers interact with the API rather than SSHing to start processes on each machine. OKE’s managed value is that OCI operates that control plane for you. Object Storage is not the Kubernetes scheduler.