From 2601f09e7ab3c657b8ee57df97f324ca80050a75 Mon Sep 17 00:00:00 2001 From: Tim Pietrusky Date: Mon, 23 Mar 2026 20:28:52 +0100 Subject: [PATCH 1/3] fix: use correct gpu id in pod create help examples "NVIDIA RTX 4090" is not a valid gpu id and causes pod creation to fail. the correct id from the api is "NVIDIA GeForce RTX 4090". --- cmd/pod/create.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/pod/create.go b/cmd/pod/create.go index eee17b1..3b46932 100644 --- a/cmd/pod/create.go +++ b/cmd/pod/create.go @@ -21,10 +21,10 @@ you can create a pod either from a template or by specifying an image directly. examples: # create from template (recommended) - runpodctl pod create --template-id runpod-torch-v21 --gpu-id "NVIDIA RTX 4090" + runpodctl pod create --template-id runpod-torch-v21 --gpu-id "NVIDIA GeForce RTX 4090" # create with custom image - runpodctl pod create --image runpod/pytorch:2.1.0-py3.10-cuda11.8.0-devel-ubuntu22.04 --gpu-id "NVIDIA RTX 4090" + runpodctl pod create --image runpod/pytorch:2.1.0-py3.10-cuda11.8.0-devel-ubuntu22.04 --gpu-id "NVIDIA GeForce RTX 4090" # create a cpu pod runpodctl pod create --compute-type cpu --image ubuntu:22.04 From 0758e82ed6c6a313f83da5204fcda9bb38bda7af Mon Sep 17 00:00:00 2001 From: Tim Pietrusky Date: Mon, 23 Mar 2026 20:31:10 +0100 Subject: [PATCH 2/3] fix: update docker image in pod create help examples replace outdated pytorch:2.1.0-py3.10-cuda11.8.0 image with pytorch:1.0.3-cu1281-torch291-ubuntu2404. --- cmd/pod/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/pod/create.go b/cmd/pod/create.go index 3b46932..b0ce127 100644 --- a/cmd/pod/create.go +++ b/cmd/pod/create.go @@ -24,7 +24,7 @@ examples: runpodctl pod create --template-id runpod-torch-v21 --gpu-id "NVIDIA GeForce RTX 4090" # create with custom image - runpodctl pod create --image runpod/pytorch:2.1.0-py3.10-cuda11.8.0-devel-ubuntu22.04 --gpu-id "NVIDIA GeForce RTX 4090" + runpodctl pod create --image runpod/pytorch:1.0.3-cu1281-torch291-ubuntu2404 --gpu-id "NVIDIA GeForce RTX 4090" # create a cpu pod runpodctl pod create --compute-type cpu --image ubuntu:22.04 From 1978cc5888e0b161242cae4102cfab546dfa7415 Mon Sep 17 00:00:00 2001 From: Tim Pietrusky Date: Mon, 23 Mar 2026 20:31:14 +0100 Subject: [PATCH 3/3] chore: regenerate markdown docs --- docs/runpodctl.md | 2 +- docs/runpodctl_billing.md | 2 +- docs/runpodctl_billing_network-volume.md | 2 +- docs/runpodctl_billing_pods.md | 2 +- docs/runpodctl_billing_serverless.md | 2 +- docs/runpodctl_completion.md | 2 +- docs/runpodctl_datacenter.md | 2 +- docs/runpodctl_datacenter_list.md | 2 +- docs/runpodctl_doctor.md | 2 +- docs/runpodctl_gpu.md | 2 +- docs/runpodctl_gpu_list.md | 2 +- docs/runpodctl_model.md | 2 +- docs/runpodctl_model_add.md | 2 +- docs/runpodctl_model_list.md | 2 +- docs/runpodctl_model_remove.md | 2 +- docs/runpodctl_network-volume.md | 2 +- docs/runpodctl_network-volume_create.md | 2 +- docs/runpodctl_network-volume_delete.md | 2 +- docs/runpodctl_network-volume_get.md | 2 +- docs/runpodctl_network-volume_list.md | 2 +- docs/runpodctl_network-volume_update.md | 2 +- docs/runpodctl_pod.md | 2 +- docs/runpodctl_pod_create.md | 7 ++++--- docs/runpodctl_pod_delete.md | 2 +- docs/runpodctl_pod_get.md | 2 +- docs/runpodctl_pod_list.md | 14 ++++++++------ docs/runpodctl_pod_reset.md | 2 +- docs/runpodctl_pod_restart.md | 2 +- docs/runpodctl_pod_start.md | 2 +- docs/runpodctl_pod_stop.md | 2 +- docs/runpodctl_pod_update.md | 2 +- docs/runpodctl_receive.md | 2 +- docs/runpodctl_registry.md | 2 +- docs/runpodctl_registry_create.md | 2 +- docs/runpodctl_registry_delete.md | 2 +- docs/runpodctl_registry_get.md | 2 +- docs/runpodctl_registry_list.md | 2 +- docs/runpodctl_send.md | 2 +- docs/runpodctl_serverless.md | 2 +- docs/runpodctl_serverless_create.md | 21 +++++++++++---------- docs/runpodctl_serverless_delete.md | 2 +- docs/runpodctl_serverless_get.md | 2 +- docs/runpodctl_serverless_list.md | 2 +- docs/runpodctl_serverless_update.md | 2 +- docs/runpodctl_ssh.md | 2 +- docs/runpodctl_ssh_add-key.md | 2 +- docs/runpodctl_ssh_info.md | 2 +- docs/runpodctl_ssh_list-keys.md | 2 +- docs/runpodctl_template.md | 2 +- docs/runpodctl_template_create.md | 2 +- docs/runpodctl_template_delete.md | 2 +- docs/runpodctl_template_get.md | 2 +- docs/runpodctl_template_list.md | 2 +- docs/runpodctl_template_search.md | 2 +- docs/runpodctl_template_update.md | 2 +- docs/runpodctl_update.md | 2 +- docs/runpodctl_user.md | 2 +- docs/runpodctl_version.md | 2 +- 58 files changed, 78 insertions(+), 74 deletions(-) diff --git a/docs/runpodctl.md b/docs/runpodctl.md index 69efdfe..0b8218c 100644 --- a/docs/runpodctl.md +++ b/docs/runpodctl.md @@ -61,4 +61,4 @@ deprecated * [runpodctl user](runpodctl_user.md) - show account info * [runpodctl version](runpodctl_version.md) - print the version -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_billing.md b/docs/runpodctl_billing.md index e2f10ba..02e12c6 100644 --- a/docs/runpodctl_billing.md +++ b/docs/runpodctl_billing.md @@ -25,4 +25,4 @@ view billing history for pods, serverless, and network volumes * [runpodctl billing pods](runpodctl_billing_pods.md) - view pod billing history * [runpodctl billing serverless](runpodctl_billing_serverless.md) - view serverless billing history -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_billing_network-volume.md b/docs/runpodctl_billing_network-volume.md index e71bfd7..942bb01 100644 --- a/docs/runpodctl_billing_network-volume.md +++ b/docs/runpodctl_billing_network-volume.md @@ -29,4 +29,4 @@ runpodctl billing network-volume [flags] * [runpodctl billing](runpodctl_billing.md) - view billing history -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_billing_pods.md b/docs/runpodctl_billing_pods.md index 04e86dc..fe79d4e 100644 --- a/docs/runpodctl_billing_pods.md +++ b/docs/runpodctl_billing_pods.md @@ -32,4 +32,4 @@ runpodctl billing pods [flags] * [runpodctl billing](runpodctl_billing.md) - view billing history -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_billing_serverless.md b/docs/runpodctl_billing_serverless.md index 61679c5..7f30b17 100644 --- a/docs/runpodctl_billing_serverless.md +++ b/docs/runpodctl_billing_serverless.md @@ -32,4 +32,4 @@ runpodctl billing serverless [flags] * [runpodctl billing](runpodctl_billing.md) - view billing history -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_completion.md b/docs/runpodctl_completion.md index fbd7953..cf98b61 100644 --- a/docs/runpodctl_completion.md +++ b/docs/runpodctl_completion.md @@ -26,4 +26,4 @@ runpodctl completion [flags] * [runpodctl](runpodctl.md) - cli for runpod.io -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_datacenter.md b/docs/runpodctl_datacenter.md index eedb699..9f9799a 100644 --- a/docs/runpodctl_datacenter.md +++ b/docs/runpodctl_datacenter.md @@ -23,4 +23,4 @@ list datacenters and their gpu availability * [runpodctl](runpodctl.md) - cli for runpod.io * [runpodctl datacenter list](runpodctl_datacenter_list.md) - list all datacenters -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_datacenter_list.md b/docs/runpodctl_datacenter_list.md index 83d5573..f7dc2be 100644 --- a/docs/runpodctl_datacenter_list.md +++ b/docs/runpodctl_datacenter_list.md @@ -26,4 +26,4 @@ runpodctl datacenter list [flags] * [runpodctl datacenter](runpodctl_datacenter.md) - list datacenters -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_doctor.md b/docs/runpodctl_doctor.md index dfdb00e..5bd3444 100644 --- a/docs/runpodctl_doctor.md +++ b/docs/runpodctl_doctor.md @@ -26,4 +26,4 @@ runpodctl doctor [flags] * [runpodctl](runpodctl.md) - cli for runpod.io -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_gpu.md b/docs/runpodctl_gpu.md index 17c0ebb..cf23762 100644 --- a/docs/runpodctl_gpu.md +++ b/docs/runpodctl_gpu.md @@ -23,4 +23,4 @@ list available gpu types and their availability * [runpodctl](runpodctl.md) - cli for runpod.io * [runpodctl gpu list](runpodctl_gpu_list.md) - list available gpu types -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_gpu_list.md b/docs/runpodctl_gpu_list.md index d439efc..43e309d 100644 --- a/docs/runpodctl_gpu_list.md +++ b/docs/runpodctl_gpu_list.md @@ -27,4 +27,4 @@ runpodctl gpu list [flags] * [runpodctl gpu](runpodctl_gpu.md) - list available gpu types -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_model.md b/docs/runpodctl_model.md index f342f4d..f36b065 100644 --- a/docs/runpodctl_model.md +++ b/docs/runpodctl_model.md @@ -25,4 +25,4 @@ manage models in the runpod model repository * [runpodctl model list](runpodctl_model_list.md) - list models * [runpodctl model remove](runpodctl_model_remove.md) - remove a model -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_model_add.md b/docs/runpodctl_model_add.md index 7e17236..875d64e 100644 --- a/docs/runpodctl_model_add.md +++ b/docs/runpodctl_model_add.md @@ -38,4 +38,4 @@ runpodctl model add [flags] * [runpodctl model](runpodctl_model.md) - manage model repository -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_model_list.md b/docs/runpodctl_model_list.md index cd1d623..d39c680 100644 --- a/docs/runpodctl_model_list.md +++ b/docs/runpodctl_model_list.md @@ -29,4 +29,4 @@ runpodctl model list [flags] * [runpodctl model](runpodctl_model.md) - manage model repository -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_model_remove.md b/docs/runpodctl_model_remove.md index bd47ca5..6940cad 100644 --- a/docs/runpodctl_model_remove.md +++ b/docs/runpodctl_model_remove.md @@ -28,4 +28,4 @@ runpodctl model remove [flags] * [runpodctl model](runpodctl_model.md) - manage model repository -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_network-volume.md b/docs/runpodctl_network-volume.md index 38a8b92..a006894 100644 --- a/docs/runpodctl_network-volume.md +++ b/docs/runpodctl_network-volume.md @@ -27,4 +27,4 @@ manage network volumes on runpod * [runpodctl network-volume list](runpodctl_network-volume_list.md) - list all network volumes * [runpodctl network-volume update](runpodctl_network-volume_update.md) - update a network volume -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_network-volume_create.md b/docs/runpodctl_network-volume_create.md index cbed5ba..9b0ad2e 100644 --- a/docs/runpodctl_network-volume_create.md +++ b/docs/runpodctl_network-volume_create.md @@ -29,4 +29,4 @@ runpodctl network-volume create [flags] * [runpodctl network-volume](runpodctl_network-volume.md) - manage network volumes -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_network-volume_delete.md b/docs/runpodctl_network-volume_delete.md index 46fc193..140dd71 100644 --- a/docs/runpodctl_network-volume_delete.md +++ b/docs/runpodctl_network-volume_delete.md @@ -26,4 +26,4 @@ runpodctl network-volume delete [flags] * [runpodctl network-volume](runpodctl_network-volume.md) - manage network volumes -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_network-volume_get.md b/docs/runpodctl_network-volume_get.md index 512bad5..f805941 100644 --- a/docs/runpodctl_network-volume_get.md +++ b/docs/runpodctl_network-volume_get.md @@ -26,4 +26,4 @@ runpodctl network-volume get [flags] * [runpodctl network-volume](runpodctl_network-volume.md) - manage network volumes -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_network-volume_list.md b/docs/runpodctl_network-volume_list.md index da00803..63e9dbb 100644 --- a/docs/runpodctl_network-volume_list.md +++ b/docs/runpodctl_network-volume_list.md @@ -26,4 +26,4 @@ runpodctl network-volume list [flags] * [runpodctl network-volume](runpodctl_network-volume.md) - manage network volumes -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_network-volume_update.md b/docs/runpodctl_network-volume_update.md index fd8191d..923a279 100644 --- a/docs/runpodctl_network-volume_update.md +++ b/docs/runpodctl_network-volume_update.md @@ -28,4 +28,4 @@ runpodctl network-volume update [flags] * [runpodctl network-volume](runpodctl_network-volume.md) - manage network volumes -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_pod.md b/docs/runpodctl_pod.md index a081ce5..f7f3ab0 100644 --- a/docs/runpodctl_pod.md +++ b/docs/runpodctl_pod.md @@ -31,4 +31,4 @@ manage gpu pods on runpod * [runpodctl pod stop](runpodctl_pod_stop.md) - stop a running pod * [runpodctl pod update](runpodctl_pod_update.md) - update an existing pod -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_pod_create.md b/docs/runpodctl_pod_create.md index d5354a3..21a248c 100644 --- a/docs/runpodctl_pod_create.md +++ b/docs/runpodctl_pod_create.md @@ -10,10 +10,10 @@ you can create a pod either from a template or by specifying an image directly. examples: # create from template (recommended) - runpodctl pod create --template-id runpod-torch-v21 --gpu-id "NVIDIA RTX 4090" + runpodctl pod create --template-id runpod-torch-v21 --gpu-id "NVIDIA GeForce RTX 4090" # create with custom image - runpodctl pod create --image runpod/pytorch:2.1.0-py3.10-cuda11.8.0-devel-ubuntu22.04 --gpu-id "NVIDIA RTX 4090" + runpodctl pod create --image runpod/pytorch:1.0.3-cu1281-torch291-ubuntu2404 --gpu-id "NVIDIA GeForce RTX 4090" # create a cpu pod runpodctl pod create --compute-type cpu --image ubuntu:22.04 @@ -40,6 +40,7 @@ runpodctl pod create [flags] -h, --help help for create --image string docker image name (required if no template) --name string pod name + --network-volume-id string network volume id to attach --ports string comma-separated list of ports (e.g., '8888/http,22/tcp') --public-ip require public ip (community cloud only) --ssh enable ssh on the pod (default true) @@ -58,4 +59,4 @@ runpodctl pod create [flags] * [runpodctl pod](runpodctl_pod.md) - manage gpu pods -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_pod_delete.md b/docs/runpodctl_pod_delete.md index 2037682..05dd527 100644 --- a/docs/runpodctl_pod_delete.md +++ b/docs/runpodctl_pod_delete.md @@ -26,4 +26,4 @@ runpodctl pod delete [flags] * [runpodctl pod](runpodctl_pod.md) - manage gpu pods -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_pod_get.md b/docs/runpodctl_pod_get.md index 836cd93..32cc691 100644 --- a/docs/runpodctl_pod_get.md +++ b/docs/runpodctl_pod_get.md @@ -28,4 +28,4 @@ runpodctl pod get [flags] * [runpodctl pod](runpodctl_pod.md) - manage gpu pods -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_pod_list.md b/docs/runpodctl_pod_list.md index 3fc1311..8b52a4a 100644 --- a/docs/runpodctl_pod_list.md +++ b/docs/runpodctl_pod_list.md @@ -13,11 +13,13 @@ runpodctl pod list [flags] ### Options ``` - --compute-type string filter by compute type (GPU or CPU) - -h, --help help for list - --include-machine include machine info - --include-network-volume include network volume info - --name string filter by pod name + -a, --all show all pods including exited (default: running only) + --compute-type string filter by compute type (GPU or CPU) + --created-after string filter pods created after date (e.g. 2025-01-15) + -h, --help help for list + --name string filter by pod name + --since string filter pods created within duration (e.g. 1h, 7d) + --status string filter by desired status (e.g. RUNNING, EXITED) ``` ### Options inherited from parent commands @@ -30,4 +32,4 @@ runpodctl pod list [flags] * [runpodctl pod](runpodctl_pod.md) - manage gpu pods -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_pod_reset.md b/docs/runpodctl_pod_reset.md index df0ba9f..7a1432e 100644 --- a/docs/runpodctl_pod_reset.md +++ b/docs/runpodctl_pod_reset.md @@ -26,4 +26,4 @@ runpodctl pod reset [flags] * [runpodctl pod](runpodctl_pod.md) - manage gpu pods -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_pod_restart.md b/docs/runpodctl_pod_restart.md index 403c6a8..2a6fe17 100644 --- a/docs/runpodctl_pod_restart.md +++ b/docs/runpodctl_pod_restart.md @@ -26,4 +26,4 @@ runpodctl pod restart [flags] * [runpodctl pod](runpodctl_pod.md) - manage gpu pods -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_pod_start.md b/docs/runpodctl_pod_start.md index 37f6ce5..dbd043f 100644 --- a/docs/runpodctl_pod_start.md +++ b/docs/runpodctl_pod_start.md @@ -26,4 +26,4 @@ runpodctl pod start [flags] * [runpodctl pod](runpodctl_pod.md) - manage gpu pods -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_pod_stop.md b/docs/runpodctl_pod_stop.md index 2e40a39..4ab4f83 100644 --- a/docs/runpodctl_pod_stop.md +++ b/docs/runpodctl_pod_stop.md @@ -26,4 +26,4 @@ runpodctl pod stop [flags] * [runpodctl pod](runpodctl_pod.md) - manage gpu pods -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_pod_update.md b/docs/runpodctl_pod_update.md index a4b39d4..1a2e92d 100644 --- a/docs/runpodctl_pod_update.md +++ b/docs/runpodctl_pod_update.md @@ -33,4 +33,4 @@ runpodctl pod update [flags] * [runpodctl pod](runpodctl_pod.md) - manage gpu pods -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_receive.md b/docs/runpodctl_receive.md index 23fb23e..113bb93 100644 --- a/docs/runpodctl_receive.md +++ b/docs/runpodctl_receive.md @@ -26,4 +26,4 @@ runpodctl receive [flags] * [runpodctl](runpodctl.md) - cli for runpod.io -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_registry.md b/docs/runpodctl_registry.md index da3a0fe..1c288c1 100644 --- a/docs/runpodctl_registry.md +++ b/docs/runpodctl_registry.md @@ -26,4 +26,4 @@ manage container registry authentication on runpod * [runpodctl registry get](runpodctl_registry_get.md) - get registry auth details * [runpodctl registry list](runpodctl_registry_list.md) - list all registry auths -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_registry_create.md b/docs/runpodctl_registry_create.md index bddb4f7..22fa944 100644 --- a/docs/runpodctl_registry_create.md +++ b/docs/runpodctl_registry_create.md @@ -29,4 +29,4 @@ runpodctl registry create [flags] * [runpodctl registry](runpodctl_registry.md) - manage container registry auth -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_registry_delete.md b/docs/runpodctl_registry_delete.md index 3c25ea3..f8601b9 100644 --- a/docs/runpodctl_registry_delete.md +++ b/docs/runpodctl_registry_delete.md @@ -26,4 +26,4 @@ runpodctl registry delete [flags] * [runpodctl registry](runpodctl_registry.md) - manage container registry auth -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_registry_get.md b/docs/runpodctl_registry_get.md index dca5ff6..1492012 100644 --- a/docs/runpodctl_registry_get.md +++ b/docs/runpodctl_registry_get.md @@ -26,4 +26,4 @@ runpodctl registry get [flags] * [runpodctl registry](runpodctl_registry.md) - manage container registry auth -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_registry_list.md b/docs/runpodctl_registry_list.md index 49fdd9c..8aaa07d 100644 --- a/docs/runpodctl_registry_list.md +++ b/docs/runpodctl_registry_list.md @@ -26,4 +26,4 @@ runpodctl registry list [flags] * [runpodctl registry](runpodctl_registry.md) - manage container registry auth -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_send.md b/docs/runpodctl_send.md index a47e1d8..70b5c64 100644 --- a/docs/runpodctl_send.md +++ b/docs/runpodctl_send.md @@ -27,4 +27,4 @@ runpodctl send [flags] * [runpodctl](runpodctl.md) - cli for runpod.io -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_serverless.md b/docs/runpodctl_serverless.md index bcd4d25..427d80f 100644 --- a/docs/runpodctl_serverless.md +++ b/docs/runpodctl_serverless.md @@ -27,4 +27,4 @@ manage serverless endpoints on runpod * [runpodctl serverless list](runpodctl_serverless_list.md) - list all endpoints * [runpodctl serverless update](runpodctl_serverless_update.md) - update an endpoint -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_serverless_create.md b/docs/runpodctl_serverless_create.md index b077811..b83f896 100644 --- a/docs/runpodctl_serverless_create.md +++ b/docs/runpodctl_serverless_create.md @@ -13,15 +13,16 @@ runpodctl serverless create [flags] ### Options ``` - --compute-type string compute type (GPU or CPU) (default "GPU") - --data-center-ids string comma-separated list of data center ids - --gpu-count int number of gpus per worker (default 1) - --gpu-id string gpu id (from 'runpodctl gpu list') - -h, --help help for create - --name string endpoint name - --template-id string template id (required) - --workers-max int maximum number of workers (default 3) - --workers-min int minimum number of workers + --compute-type string compute type (GPU or CPU) (default "GPU") + --data-center-ids string comma-separated list of data center ids + --gpu-count int number of gpus per worker (default 1) + --gpu-id string gpu id (from 'runpodctl gpu list') + -h, --help help for create + --name string endpoint name + --network-volume-id string network volume id to attach + --template-id string template id (required) + --workers-max int maximum number of workers (default 3) + --workers-min int minimum number of workers ``` ### Options inherited from parent commands @@ -34,4 +35,4 @@ runpodctl serverless create [flags] * [runpodctl serverless](runpodctl_serverless.md) - manage serverless endpoints -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_serverless_delete.md b/docs/runpodctl_serverless_delete.md index 21f0e09..6ca48a7 100644 --- a/docs/runpodctl_serverless_delete.md +++ b/docs/runpodctl_serverless_delete.md @@ -26,4 +26,4 @@ runpodctl serverless delete [flags] * [runpodctl serverless](runpodctl_serverless.md) - manage serverless endpoints -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_serverless_get.md b/docs/runpodctl_serverless_get.md index 2c32076..0f89b22 100644 --- a/docs/runpodctl_serverless_get.md +++ b/docs/runpodctl_serverless_get.md @@ -28,4 +28,4 @@ runpodctl serverless get [flags] * [runpodctl serverless](runpodctl_serverless.md) - manage serverless endpoints -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_serverless_list.md b/docs/runpodctl_serverless_list.md index 805b5a2..bd2725f 100644 --- a/docs/runpodctl_serverless_list.md +++ b/docs/runpodctl_serverless_list.md @@ -28,4 +28,4 @@ runpodctl serverless list [flags] * [runpodctl serverless](runpodctl_serverless.md) - manage serverless endpoints -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_serverless_update.md b/docs/runpodctl_serverless_update.md index fe33d63..f5f8b37 100644 --- a/docs/runpodctl_serverless_update.md +++ b/docs/runpodctl_serverless_update.md @@ -32,4 +32,4 @@ runpodctl serverless update [flags] * [runpodctl serverless](runpodctl_serverless.md) - manage serverless endpoints -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_ssh.md b/docs/runpodctl_ssh.md index f0d2848..1737bfe 100644 --- a/docs/runpodctl_ssh.md +++ b/docs/runpodctl_ssh.md @@ -25,4 +25,4 @@ manage ssh keys and show ssh info for pods. uses the api key from RUNPOD_API_KEY * [runpodctl ssh info](runpodctl_ssh_info.md) - show ssh info for a pod * [runpodctl ssh list-keys](runpodctl_ssh_list-keys.md) - list all ssh keys -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_ssh_add-key.md b/docs/runpodctl_ssh_add-key.md index ae721ce..feb3d52 100644 --- a/docs/runpodctl_ssh_add-key.md +++ b/docs/runpodctl_ssh_add-key.md @@ -28,4 +28,4 @@ runpodctl ssh add-key [flags] * [runpodctl ssh](runpodctl_ssh.md) - manage ssh keys and connections -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_ssh_info.md b/docs/runpodctl_ssh_info.md index 3d8fd61..5ab8d59 100644 --- a/docs/runpodctl_ssh_info.md +++ b/docs/runpodctl_ssh_info.md @@ -27,4 +27,4 @@ runpodctl ssh info [flags] * [runpodctl ssh](runpodctl_ssh.md) - manage ssh keys and connections -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_ssh_list-keys.md b/docs/runpodctl_ssh_list-keys.md index 54751fe..4523c9e 100644 --- a/docs/runpodctl_ssh_list-keys.md +++ b/docs/runpodctl_ssh_list-keys.md @@ -26,4 +26,4 @@ runpodctl ssh list-keys [flags] * [runpodctl ssh](runpodctl_ssh.md) - manage ssh keys and connections -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_template.md b/docs/runpodctl_template.md index 6a1b3e9..e495589 100644 --- a/docs/runpodctl_template.md +++ b/docs/runpodctl_template.md @@ -28,4 +28,4 @@ manage templates on runpod * [runpodctl template search](runpodctl_template_search.md) - search templates * [runpodctl template update](runpodctl_template_update.md) - update a template -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_template_create.md b/docs/runpodctl_template_create.md index 766a411..7dca12d 100644 --- a/docs/runpodctl_template_create.md +++ b/docs/runpodctl_template_create.md @@ -37,4 +37,4 @@ runpodctl template create [flags] * [runpodctl template](runpodctl_template.md) - manage templates -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_template_delete.md b/docs/runpodctl_template_delete.md index a6aba86..6c219a1 100644 --- a/docs/runpodctl_template_delete.md +++ b/docs/runpodctl_template_delete.md @@ -26,4 +26,4 @@ runpodctl template delete [flags] * [runpodctl template](runpodctl_template.md) - manage templates -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_template_get.md b/docs/runpodctl_template_get.md index aa8e46d..614917e 100644 --- a/docs/runpodctl_template_get.md +++ b/docs/runpodctl_template_get.md @@ -26,4 +26,4 @@ runpodctl template get [flags] * [runpodctl template](runpodctl_template.md) - manage templates -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_template_list.md b/docs/runpodctl_template_list.md index 0048690..a4f41a1 100644 --- a/docs/runpodctl_template_list.md +++ b/docs/runpodctl_template_list.md @@ -41,4 +41,4 @@ runpodctl template list [flags] * [runpodctl template](runpodctl_template.md) - manage templates -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_template_search.md b/docs/runpodctl_template_search.md index 70937c5..b21de71 100644 --- a/docs/runpodctl_template_search.md +++ b/docs/runpodctl_template_search.md @@ -37,4 +37,4 @@ runpodctl template search [flags] * [runpodctl template](runpodctl_template.md) - manage templates -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_template_update.md b/docs/runpodctl_template_update.md index 657d9ca..329eb54 100644 --- a/docs/runpodctl_template_update.md +++ b/docs/runpodctl_template_update.md @@ -31,4 +31,4 @@ runpodctl template update [flags] * [runpodctl template](runpodctl_template.md) - manage templates -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_update.md b/docs/runpodctl_update.md index f054f72..d9bec13 100644 --- a/docs/runpodctl_update.md +++ b/docs/runpodctl_update.md @@ -26,4 +26,4 @@ runpodctl update [flags] * [runpodctl](runpodctl.md) - cli for runpod.io -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_user.md b/docs/runpodctl_user.md index 56bb7d0..d93694f 100644 --- a/docs/runpodctl_user.md +++ b/docs/runpodctl_user.md @@ -26,4 +26,4 @@ runpodctl user [flags] * [runpodctl](runpodctl.md) - cli for runpod.io -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026 diff --git a/docs/runpodctl_version.md b/docs/runpodctl_version.md index 8a487b1..27ba418 100644 --- a/docs/runpodctl_version.md +++ b/docs/runpodctl_version.md @@ -22,4 +22,4 @@ runpodctl version [flags] * [runpodctl](runpodctl.md) - cli for runpod.io -###### Auto generated by spf13/cobra on 5-Feb-2026 +###### Auto generated by spf13/cobra on 23-Mar-2026