Skip to content
Closed
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
2 changes: 1 addition & 1 deletion runpodctl/reference/runpodctl-pod.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Template ID to use for Pod configuration. Use [`runpodctl template search`](/run
</ResponseField>

<ResponseField name="--image" type="string">
Docker image to use (e.g., `runpod/pytorch:latest`). Required if no template specified.
Docker image to use (e.g., `runpod/pytorch:2.8.0-py3.11-cuda12.8.1-cudnn-devel-ubuntu22.04`). Required if no template specified.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated runpod/pytorch:latest to runpod/pytorch:2.8.0-py3.11-cuda12.8.1-cudnn-devel-ubuntu22.04 per PR #285 which pins the README reference to a published tag that resolves under Layer 2 image verification.

Source: runpod/runpodctl#285

</ResponseField>

<ResponseField name="--name" type="string">
Expand Down
4 changes: 2 additions & 2 deletions runpodctl/reference/runpodctl-template.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Create a new template:

```bash
# Create a Pod template
runpodctl template create --name "my-template" --image "runpod/pytorch:latest"
runpodctl template create --name "my-template" --image "runpod/pytorch:2.8.0-py3.11-cuda12.8.1-cudnn-devel-ubuntu22.04"

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated runpod/pytorch:latest to runpod/pytorch:2.8.0-py3.11-cuda12.8.1-cudnn-devel-ubuntu22.04 per PR #285 which pins the README reference to a published tag that resolves under Layer 2 image verification.

Source: runpod/runpodctl#285


# Create a Serverless template
runpodctl template create --name "my-serverless-template" --image "my-image:latest" --serverless
Expand All @@ -125,7 +125,7 @@ Template name.
</ResponseField>

<ResponseField name="--image" type="string" required>
Docker image (e.g., `runpod/pytorch:latest`).
Docker image (e.g., `runpod/pytorch:2.8.0-py3.11-cuda12.8.1-cudnn-devel-ubuntu22.04`).
</ResponseField>

<ResponseField name="--container-disk-in-gb" type="int" default="20">
Expand Down
Loading