From 6b9b7880e1f14bb6d72e2e68d9e999ea552d3181 Mon Sep 17 00:00:00 2001
From: "promptless[bot]" <179508745+promptless[bot]@users.noreply.github.com>
Date: Wed, 19 Nov 2025 16:26:58 +0000
Subject: [PATCH 1/3] Fix missing backslash in runpodctl create pods example
---
runpodctl/reference/runpodctl-create-pods.mdx | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/runpodctl/reference/runpodctl-create-pods.mdx b/runpodctl/reference/runpodctl-create-pods.mdx
index 4f88a0fd..bd19caa1 100644
--- a/runpodctl/reference/runpodctl-create-pods.mdx
+++ b/runpodctl/reference/runpodctl-create-pods.mdx
@@ -5,18 +5,16 @@ sidebarTitle: "create pods"
Create multiple Pods at once with identical configurations (useful for parallel workloads or distributed training).
-
-```sh Command
+```sh
runpodctl create pods [flags]
```
-
## Example
Create 3 identical Pods with the name "training-worker" in the Secure Cloud:
```sh
-runpodctl create pods
+runpodctl create pods \
--name "training-worker" \
--podCount 3 \
--gpuType "NVIDIA GeForce RTX 3090" \
From cf4dff9177df1a0b97804e846b44d49d2246e41a Mon Sep 17 00:00:00 2001
From: Mo King
Date: Wed, 19 Nov 2025 11:28:38 -0500
Subject: [PATCH 2/3] Revise command example in create pods documentation
Updated the command example for creating multiple Pods.
---
runpodctl/reference/runpodctl-create-pods.mdx | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/runpodctl/reference/runpodctl-create-pods.mdx b/runpodctl/reference/runpodctl-create-pods.mdx
index bd19caa1..03bd17db 100644
--- a/runpodctl/reference/runpodctl-create-pods.mdx
+++ b/runpodctl/reference/runpodctl-create-pods.mdx
@@ -5,9 +5,10 @@ sidebarTitle: "create pods"
Create multiple Pods at once with identical configurations (useful for parallel workloads or distributed training).
-```sh
+
+```sh Command
runpodctl create pods [flags]
-```
+
## Example
From b638f621d29659fe044c629ef721e32d09ae5af0 Mon Sep 17 00:00:00 2001
From: Mo King
Date: Wed, 19 Nov 2025 11:28:57 -0500
Subject: [PATCH 3/3] Fix formatting in runpodctl-create-pods documentation
---
runpodctl/reference/runpodctl-create-pods.mdx | 1 +
1 file changed, 1 insertion(+)
diff --git a/runpodctl/reference/runpodctl-create-pods.mdx b/runpodctl/reference/runpodctl-create-pods.mdx
index 03bd17db..f5f4f292 100644
--- a/runpodctl/reference/runpodctl-create-pods.mdx
+++ b/runpodctl/reference/runpodctl-create-pods.mdx
@@ -8,6 +8,7 @@ Create multiple Pods at once with identical configurations (useful for parallel
```sh Command
runpodctl create pods [flags]
+```
## Example