Failed to create pod: This machine does not have the resources to deploy your pod. Please try a different machine.
It seems lots of people encounter this error, but none of the threads had a clear resolution. In my case, we're doing a request that has no strict requirements on it.
runpod.create_pod(
name="...",
image_name="runpod/pytorch:2.4.0-py3.11-c
uda12.4.1-devel-ubuntu22.04",
gpu_type_id="NVIDIA GeForce RTX 5090",
gpu_count=1,
container_disk_in_gb=70,
cloud_type="ALL",
ports="22/tcp",
env={"PUBLIC_KEY": "...},
)
There's no particular filters, as you can see. Disk limits result in a different error message.
I assume what is happening is there is no gpus available across all of Runpod, and the error message is just very misleading. So there's nothing to be done but wait. But it would be good to get someone to unequivocably confirm that, and update the knowldge base, as your ai bot does not recognize this common error message.