Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cmd/serverless/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ examples:
runpodctl hub search vllm # find the hub id
runpodctl serverless create --hub-id <id> --gpu-id "NVIDIA GeForce RTX 4090"

# create from a hub repo and attach a model
runpodctl serverless create --hub-id <id> --gpu-id "NVIDIA GeForce RTX 4090" --model-reference https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct:main

# override or add env vars (hub defaults are included automatically)
runpodctl serverless create --hub-id <id> --env MODEL_NAME=my-model --env MAX_TOKENS=4096`,
Args: cobra.NoArgs,
Expand Down Expand Up @@ -87,7 +90,7 @@ func init() {
createCmd.Flags().BoolVar(&createFlashBoot, "flash-boot", true, "enable flash boot")
createCmd.Flags().IntVar(&createExecutionTimeout, "execution-timeout", -1, "max seconds per request")
createCmd.Flags().StringVar(&createNetworkVolumeIDs, "network-volume-ids", "", "comma-separated network volume ids for multi-region")
createCmd.Flags().StringArrayVar(&createModelReferences, "model-reference", nil, "model reference to attach to the endpoint (repeatable)")
createCmd.Flags().StringArrayVar(&createModelReferences, "model-reference", nil, "hugging face model url with a ref to cache on the endpoint, e.g. https://huggingface.co/<org>/<model>:main; works with --template-id or --hub-id, gpu only (repeatable)")
}

func runCreate(cmd *cobra.Command, args []string) error {
Expand Down Expand Up @@ -124,9 +127,6 @@ func runCreate(cmd *cobra.Command, args []string) error {
return fmt.Errorf("--instance-id is only supported with --compute-type CPU")
}

if len(createModelReferences) > 0 && createHubID != "" {
return fmt.Errorf("--model-reference is only supported with --template-id")
}
if len(createModelReferences) > 0 && computeType != "GPU" {
return fmt.Errorf("--model-reference is only supported with --compute-type GPU")
}
Expand Down
9 changes: 0 additions & 9 deletions cmd/serverless/serverless_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,15 +151,6 @@ func TestCreateCmd_Validations(t *testing.T) {
setup: func() { createNetworkVolumeID = "vol-1"; createNetworkVolumeIDs = "vol-2,vol-3" },
wantErr: "--network-volume-id and --network-volume-ids are mutually exclusive",
},
{
name: "hub with model reference",
setup: func() {
createTemplateID = ""
createHubID = "hub-1"
createModelReferences = []string{"https://x/y:z"}
},
wantErr: "--model-reference is only supported with --template-id",
},
{
name: "cpu with model reference",
setup: func() { createComputeType = "CPU"; createModelReferences = []string{"https://x/y:z"} },
Expand Down
3 changes: 3 additions & 0 deletions docs/docs-gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ import (

func main() {
rootCmd := cmd.GetRootCmd()
// drop the "Auto generated ... on <date>" footer so a regen only touches
// docs with real content changes, instead of rewriting the date in every file.
rootCmd.DisableAutoGenTag = true
err := doc.GenMarkdownTree(rootCmd, "./docs/")
if err != nil {
log.Fatal(err)
Expand Down
1 change: 0 additions & 1 deletion docs/runpodctl.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,3 @@ deprecated
* [runpodctl user](runpodctl_user.md) - show account info
* [runpodctl version](runpodctl_version.md) - print the version

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_billing.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ 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 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_billing_network-volume.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ runpodctl billing network-volume [flags]

* [runpodctl billing](runpodctl_billing.md) - view billing history

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_billing_pods.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,3 @@ runpodctl billing pods [flags]

* [runpodctl billing](runpodctl_billing.md) - view billing history

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_billing_serverless.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,3 @@ runpodctl billing serverless [flags]

* [runpodctl billing](runpodctl_billing.md) - view billing history

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_completion.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl completion [flags]

* [runpodctl](runpodctl.md) - cli for runpod.io

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_datacenter.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,3 @@ 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 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_datacenter_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl datacenter list [flags]

* [runpodctl datacenter](runpodctl_datacenter.md) - list datacenters

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_doctor.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl doctor [flags]

* [runpodctl](runpodctl.md) - cli for runpod.io

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_gpu.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,3 @@ 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 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_gpu_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ runpodctl gpu list [flags]

* [runpodctl gpu](runpodctl_gpu.md) - list available gpu types

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_hub.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ browse and search the runpod hub for deployable repos
* [runpodctl hub list](runpodctl_hub_list.md) - list hub repos
* [runpodctl hub search](runpodctl_hub_search.md) - search hub repos

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_hub_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,3 @@ runpodctl hub get <id-or-owner/name> [flags]

* [runpodctl hub](runpodctl_hub.md) - browse the runpod hub

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_hub_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@ runpodctl hub list [flags]

* [runpodctl hub](runpodctl_hub.md) - browse the runpod hub

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_hub_search.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,3 @@ runpodctl hub search <term> [flags]

* [runpodctl hub](runpodctl_hub.md) - browse the runpod hub

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ 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 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_model_add.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,3 @@ runpodctl model add [flags]

* [runpodctl model](runpodctl_model.md) - manage model repository

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_model_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ runpodctl model list [flags]

* [runpodctl model](runpodctl_model.md) - manage model repository

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_model_remove.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ runpodctl model remove [flags]

* [runpodctl model](runpodctl_model.md) - manage model repository

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_network-volume.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ 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 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_network-volume_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ runpodctl network-volume create [flags]

* [runpodctl network-volume](runpodctl_network-volume.md) - manage network volumes

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_network-volume_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl network-volume delete <volume-id> [flags]

* [runpodctl network-volume](runpodctl_network-volume.md) - manage network volumes

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_network-volume_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl network-volume get <volume-id> [flags]

* [runpodctl network-volume](runpodctl_network-volume.md) - manage network volumes

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_network-volume_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl network-volume list [flags]

* [runpodctl network-volume](runpodctl_network-volume.md) - manage network volumes

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_network-volume_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ runpodctl network-volume update <volume-id> [flags]

* [runpodctl network-volume](runpodctl_network-volume.md) - manage network volumes

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_pod.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,3 @@ 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 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_pod_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,3 @@ runpodctl pod create [flags]

* [runpodctl pod](runpodctl_pod.md) - manage gpu pods

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_pod_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl pod delete <pod-id> [flags]

* [runpodctl pod](runpodctl_pod.md) - manage gpu pods

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_pod_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ runpodctl pod get <pod-id> [flags]

* [runpodctl pod](runpodctl_pod.md) - manage gpu pods

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_pod_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,3 @@ runpodctl pod list [flags]

* [runpodctl pod](runpodctl_pod.md) - manage gpu pods

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_pod_reset.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl pod reset <pod-id> [flags]

* [runpodctl pod](runpodctl_pod.md) - manage gpu pods

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_pod_restart.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl pod restart <pod-id> [flags]

* [runpodctl pod](runpodctl_pod.md) - manage gpu pods

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_pod_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl pod start <pod-id> [flags]

* [runpodctl pod](runpodctl_pod.md) - manage gpu pods

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_pod_stop.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl pod stop <pod-id> [flags]

* [runpodctl pod](runpodctl_pod.md) - manage gpu pods

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_pod_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,3 @@ runpodctl pod update <pod-id> [flags]

* [runpodctl pod](runpodctl_pod.md) - manage gpu pods

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_receive.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl receive <code> [flags]

* [runpodctl](runpodctl.md) - cli for runpod.io

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ 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 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_registry_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ runpodctl registry create [flags]

* [runpodctl registry](runpodctl_registry.md) - manage container registry auth

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_registry_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl registry delete <registry-auth-id> [flags]

* [runpodctl registry](runpodctl_registry.md) - manage container registry auth

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_registry_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl registry get <registry-auth-id> [flags]

* [runpodctl registry](runpodctl_registry.md) - manage container registry auth

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_registry_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl registry list [flags]

* [runpodctl registry](runpodctl_registry.md) - manage container registry auth

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_send.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ runpodctl send <file> [flags]

* [runpodctl](runpodctl.md) - cli for runpod.io

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_serverless.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ 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 13-May-2026
6 changes: 4 additions & 2 deletions docs/runpodctl_serverless_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ examples:
runpodctl hub search vllm # find the hub id
runpodctl serverless create --hub-id <id> --gpu-id "NVIDIA GeForce RTX 4090"

# create from a hub repo and attach a model
runpodctl serverless create --hub-id <id> --gpu-id "NVIDIA GeForce RTX 4090" --model-reference https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct:main

# override or add env vars (hub defaults are included automatically)
runpodctl serverless create --hub-id <id> --env MODEL_NAME=my-model --env MAX_TOKENS=4096

Expand All @@ -45,7 +48,7 @@ runpodctl serverless create [flags]
--idle-timeout int seconds before idle worker scales down (1-3600) (default -1)
--instance-id string cpu instance id for --compute-type CPU (e.g. cpu3g-4-16)
--min-cuda-version string minimum cuda version (e.g., 12.6)
--model-reference stringArray model reference to attach to the endpoint (repeatable)
--model-reference stringArray hugging face model url with a ref to cache on the endpoint, e.g. https://huggingface.co/<org>/<model>:main; works with --template-id or --hub-id, gpu only (repeatable)
--name string endpoint name
--network-volume-id string network volume id to attach
--network-volume-ids string comma-separated network volume ids for multi-region
Expand All @@ -66,4 +69,3 @@ runpodctl serverless create [flags]

* [runpodctl serverless](runpodctl_serverless.md) - manage serverless endpoints

###### Auto generated by spf13/cobra on 12-Jun-2026
1 change: 0 additions & 1 deletion docs/runpodctl_serverless_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl serverless delete <endpoint-id> [flags]

* [runpodctl serverless](runpodctl_serverless.md) - manage serverless endpoints

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_serverless_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ runpodctl serverless get <endpoint-id> [flags]

* [runpodctl serverless](runpodctl_serverless.md) - manage serverless endpoints

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_serverless_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ runpodctl serverless list [flags]

* [runpodctl serverless](runpodctl_serverless.md) - manage serverless endpoints

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_serverless_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,3 @@ runpodctl serverless update <endpoint-id> [flags]

* [runpodctl serverless](runpodctl_serverless.md) - manage serverless endpoints

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_ssh.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ manage ssh keys and show ssh info for pods. uses the api key from RUNPOD_API_KEY
* [runpodctl ssh list-keys](runpodctl_ssh_list-keys.md) - list all ssh keys
* [runpodctl ssh remove-key](runpodctl_ssh_remove-key.md) - remove an ssh key

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_ssh_add-key.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ runpodctl ssh add-key [flags]

* [runpodctl ssh](runpodctl_ssh.md) - manage ssh keys and connections

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_ssh_info.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ runpodctl ssh info <pod-id> [flags]

* [runpodctl ssh](runpodctl_ssh.md) - manage ssh keys and connections

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_ssh_list-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl ssh list-keys [flags]

* [runpodctl ssh](runpodctl_ssh.md) - manage ssh keys and connections

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_ssh_remove-key.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ runpodctl ssh remove-key [flags]

* [runpodctl ssh](runpodctl_ssh.md) - manage ssh keys and connections

###### Auto generated by spf13/cobra on 6-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ 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 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_template_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,3 @@ runpodctl template create [flags]

* [runpodctl template](runpodctl_template.md) - manage templates

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_template_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl template delete <template-id> [flags]

* [runpodctl template](runpodctl_template.md) - manage templates

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_template_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl template get <template-id> [flags]

* [runpodctl template](runpodctl_template.md) - manage templates

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_template_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,3 @@ runpodctl template list [flags]

* [runpodctl template](runpodctl_template.md) - manage templates

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_template_search.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,3 @@ runpodctl template search <term> [flags]

* [runpodctl template](runpodctl_template.md) - manage templates

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_template_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,3 @@ runpodctl template update <template-id> [flags]

* [runpodctl template](runpodctl_template.md) - manage templates

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl update [flags]

* [runpodctl](runpodctl.md) - cli for runpod.io

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_user.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ runpodctl user [flags]

* [runpodctl](runpodctl.md) - cli for runpod.io

###### Auto generated by spf13/cobra on 13-May-2026
1 change: 0 additions & 1 deletion docs/runpodctl_version.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ runpodctl version [flags]

* [runpodctl](runpodctl.md) - cli for runpod.io

###### Auto generated by spf13/cobra on 13-May-2026
Loading
Loading