Skip to content

Commit 72eb51b

Browse files
Merge branch 'main' into promptless/flash-cli-dev-rename-endpoint-resolution
2 parents 60a5ddd + 0dad789 commit 72eb51b

2 files changed

Lines changed: 64 additions & 0 deletions

File tree

runpodctl/reference/runpodctl-pod.mdx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,34 @@ Enable SSH on the Pod.
168168
Network volume ID to attach. Use [`runpodctl network-volume list`](/runpodctl/reference/runpodctl-network-volume) to see available network volumes.
169169
</ResponseField>
170170

171+
<ResponseField name="--min-cuda-version" type="string">
172+
Minimum CUDA version required (e.g., `11.8`, `12.4`). The Pod will only be scheduled on machines that meet this CUDA version requirement.
173+
</ResponseField>
174+
175+
<ResponseField name="--docker-args" type="string">
176+
Docker arguments passed to the container at runtime (e.g., `"sleep infinity"`).
177+
</ResponseField>
178+
179+
<ResponseField name="--registry-auth-id" type="string">
180+
Container registry authentication ID for pulling private images. Use [`runpodctl registry list`](/runpodctl/reference/runpodctl-registry) to see available registry credentials.
181+
</ResponseField>
182+
183+
<ResponseField name="--country-code" type="string">
184+
Country code for regional deployment (e.g., `US`, `CA`, `EU`). Restricts Pod placement to machines in the specified region.
185+
</ResponseField>
186+
187+
<ResponseField name="--stop-after" type="string">
188+
Automatically stop the Pod after the specified duration (e.g., `1h`, `24h`, `7d`).
189+
</ResponseField>
190+
191+
<ResponseField name="--terminate-after" type="string">
192+
Automatically terminate the Pod after the specified duration (e.g., `1h`, `24h`, `7d`). Unlike `--stop-after`, this permanently deletes the Pod.
193+
</ResponseField>
194+
195+
<ResponseField name="--compliance" type="string">
196+
Compliance settings for the Pod (e.g., regulatory requirements for data handling).
197+
</ResponseField>
198+
171199
### Start a Pod
172200

173201
Start a stopped Pod:

runpodctl/reference/runpodctl-serverless.mdx

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,34 @@ Comma-separated list of preferred datacenter IDs. Use [`runpodctl datacenter lis
122122
Network volume ID to attach. Use [`runpodctl network-volume list`](/runpodctl/reference/runpodctl-network-volume) to see available network volumes.
123123
</ResponseField>
124124

125+
<ResponseField name="--network-volume-ids" type="string">
126+
Comma-separated list of network volume IDs to attach. Use this when attaching multiple network volumes to an endpoint.
127+
</ResponseField>
128+
129+
<ResponseField name="--min-cuda-version" type="string">
130+
Minimum CUDA version required for workers (e.g., `12.4`). Workers will only be scheduled on machines that meet this CUDA version requirement.
131+
</ResponseField>
132+
133+
<ResponseField name="--scaler-type" type="string" default="QUEUE_DELAY">
134+
Autoscaler type (`QUEUE_DELAY` or `REQUEST_COUNT`). `QUEUE_DELAY` scales based on queue wait time; `REQUEST_COUNT` scales based on concurrent requests.
135+
</ResponseField>
136+
137+
<ResponseField name="--scaler-value" type="int">
138+
Scaler threshold value. For `QUEUE_DELAY`, this is the target delay in seconds. For `REQUEST_COUNT`, this is the number of concurrent requests per worker before scaling.
139+
</ResponseField>
140+
141+
<ResponseField name="--idle-timeout" type="int">
142+
Idle timeout in seconds. Workers shut down after being idle for this duration. Valid range: 5-3600 seconds.
143+
</ResponseField>
144+
145+
<ResponseField name="--flash-boot" type="bool">
146+
Enable or disable flash boot for faster worker startup. When enabled, workers start from cached container images.
147+
</ResponseField>
148+
149+
<ResponseField name="--execution-timeout" type="int">
150+
Execution timeout in seconds. Jobs that exceed this duration are terminated. The CLI accepts seconds but converts to milliseconds internally.
151+
</ResponseField>
152+
125153
### Update an endpoint
126154

127155
Update endpoint configuration:
@@ -156,6 +184,14 @@ Scaler type (`QUEUE_DELAY` or `REQUEST_COUNT`).
156184
Scaler value.
157185
</ResponseField>
158186

187+
<ResponseField name="--flash-boot" type="bool">
188+
Enable or disable flash boot for faster worker startup.
189+
</ResponseField>
190+
191+
<ResponseField name="--execution-timeout" type="int">
192+
Execution timeout in seconds. Jobs that exceed this duration are terminated.
193+
</ResponseField>
194+
159195
### Delete an endpoint
160196

161197
Delete an endpoint:

0 commit comments

Comments
 (0)