docker rate limit is causing issues in lab/cloud machines, since many of them share the same external IP.
possible workaround is to move the image to quay. for example the rabbitmq:3.8.21-management needed for the rabbitmq k8s operator.
from a laptop or local machine, pull the image, retag it, and push to quay:
podman pull docker.io/library/rabbitmq:3.8.21-management
podman tag rabbitmq:3.8.21-management quay.io/ylifshit/rabbitmq:3.8.21-management
podman push quay.io/ylifshit/rabbitmq:3.8.21-management
go to quay.io and make the new repo "public" (since its is created "private" by default).
from the lab/cloud machine pull from quay and retag the image:
podman pull quay.io/ylifshit/rabbitmq:3.8.21-management
podman tag quay.io/ylifshit/rabbitmq:3.8.21-management quay.io/rabbitmq:3.8.21-management