A city Wi-Fi captive portal image contains only amd64 binaries, but several worker nodes are arm64. What should the team do?
Select an answer to reveal the explanation.
Short Explanation
Handing an amd64 binary to an arm64 node is like shipping a vinyl record player a cassette—wrong format. Build multi-arch manifests or arch-specific tags so each node pulls an image it can actually run.
Full Explanation
Container images are architecture-specific. Mismatched CPU architecture causes pull or create failures (or unreliable emulation). Application teams should publish multi-architecture manifests or select tags matching cluster node arches. Pull policy does not erase architecture requirements, and deleting nodes is not an app packaging fix.