Hi,
i am currently trying to deploy a machine with 4 a10 gpus.
The deploy fails with this error:
Error: failed to update VM 5683d642fde2d8: internal: could not reserve resource for machine: no GPUs available to fulfill request (Request ID: 01J00J0968WKXT7FEZ5NR25S8R-ams) (Trace ID: ea7f02741ad8cacce29b7e3e826cfc05)
Thats my current fly.toml:
app = "flying-ollama"
primary_region = "ord"
[[vm]]
size = "shared-cpu-2x"
memory = "128gb"
cpus = 4
cpu_kind = "performance"
gpus = 4
gpu_kind = "a10"
[build]
image = "ollama/ollama"
[mounts]
source = "models"
destination = "/root/.ollama"
initial_size = "100gb"
[http_service]
internal_port = 11434
force_https = false
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 1
processes = ["app"]
Are there really not enough resources available or something wrong with my config?