can't start pod using the cli
I'm trying to start a pod using the cli by doing:
but I'm getting the error:
Error: Cannot resume a spot pod as an on demand pod.
I also tried putting a bid that matches the spot pricing:
and that gets me a different error Error: PodBidResume: statuscode 400Solution:Jump to solution
I found the problem, the graphql query in the source code for runpodctl is missing the gpuCount param, ran it manually with the extra param and it worked
9 Replies
Unknown User•17mo ago
Message Not Public
Sign In & Join Server To View
yeah, works fine if I start it in the UI
Unknown User•17mo ago
Message Not Public
Sign In & Join Server To View
alright
Unknown User•17mo ago
Message Not Public
Sign In & Join Server To View
Solution
I found the problem, the graphql query in the source code for runpodctl is missing the gpuCount param, ran it manually with the extra param and it worked
I'll make a pull request
Unknown User•17mo ago
Message Not Public
Sign In & Join Server To View
https://github.com/runpod/runpodctl/pull/157
hope it can be merged soon
GitHub
feat and fix: add gpuCount argument to StartSpotPod by youcefs21 · ...
Add gpuCount argument
Related:
#156: can't start spot pod using the cli
Description
The start StartSpotPod endpoint is missing the gpuCount argument, causing it to not work at all. I added th...