Force platform (linux/amd64) like docker --platform

I’m trying to use an image on an arm64 mac.

The image has both amd64 and arm64 variants, but the arm64 variant is corrupted in some way.

if I run
docker run -e ALLOW_EMPTY_PASSWORD=yes --platform linux/amd64 registry1.dso.mil/ironbank/bitnami/redis:7.4.2
the image starts successfully.

I’m looking for a similar method within kubernetes to force a specific platform/arch

I understand that it’s sub-optimal with requiring cpu emulation.

Thanks for the help!