runpodctl -> get public IP + exposed ports
Lets say I create a new pod using
runpodctl create pod --name 'Whatever' \
--imageName 'runpod/pytorch:2.0.1-py3.10-cuda11.8.0-devel-ubuntu22.04' \
--gpuType 'NVIDIA GeForce RTX 3070' \
--communityCloud \
--ports 22,8000/tcp \
Is there a way that runpodctl tells me the new IP and the external port (mapping) ?
If not, is there any way to get them?
Solution:Jump to solution
Some examples here - https://github.com/ashleykleynhans/runpod-api
GitHub
GitHub - ashleykleynhans/runpod-api: A collection of Python scripts...
A collection of Python scripts for calling the RunPod GraphQL API - ashleykleynhans/runpod-api
3 Replies
GraphQL
Solution
Some examples here - https://github.com/ashleykleynhans/runpod-api
GitHub
GitHub - ashleykleynhans/runpod-api: A collection of Python scripts...
A collection of Python scripts for calling the RunPod GraphQL API - ashleykleynhans/runpod-api
nice, thanks!