The Create Pod page allows you to configure and deploy a new compute pod with GPU resources. Follow this guide to understand all configuration options.
The Template Selection section allows you to choose the environment configuration (template) that will be used to create your pod. A template defines the base Docker image, software stack, and environment settings for your GPU container.
Suppose you want to run PyTorch with CUDA support. You might select:
Template: Pytorch (Cuda) - daturaal/pytorch
Image: 2.70-py3.12-cuda12.8.0-devel-ubuntu24.04
Labels:
⢠Previously used: You have used this template before
⢠Most popular: Commonly used and cached on the nodeBy choosing this template, your pod will be provisioned with PyTorch installed, CUDA 12.8.0 support, and based on Ubuntu 24.04. This is suitable for deep learning tasks requiring GPU acceleration.
Templates marked as "Most popular" are cached on nodes, resulting in faster deployment times.
This section allows you to specify how many GPUs your pod will use. If the node supports GPU splitting, you can rent a subset of the available GPUs rather than the entire machine.
When renting only part of a node's GPUs, resources scale proportionally:
# CPU Allocation
cpu = total_cpu * rented_gpu_count / total_gpu_count
# Memory Allocation
memory = (total_memory_in_gb - 2gb) * rented_gpu_count / total_gpu_count
# Storage Allocation
available_space = free_space * rented_gpu_count / total_gpu_count
volume_limit = int(available_space * 2 / 3)
storage_limit = int(available_space / 3)GPU providers can configure a minimum number of GPUs that must be rented per pod. For example, a node may have 8 available GPUs with a minimum rental requirement of 2 GPUs. In this case, you can rent between 2 and 8 GPUs, but cannot rent only 1 GPU.
This section allows you to configure how you will securely connect to your pod using SSH (Secure Shell).
SSH keys authenticate your access to the pod without needing a password:
Only you (or someone with your SSH private key) can access the pod after deployment, providing secure and convenient remote access.
For more details about how volumes work, see the Volumes documentation.
The Restore option allows you to restore a backup immediately when your pod is deployed. This is useful if you want your new pod to start with data from a previous backup.
For more details on restores, see the Restore documentation.
This section provides an overview of all the key settings and resources you have chosen for your pod before deployment. The summary panel helps you quickly review:
Reviewing this summary ensures that your pod will be provisioned exactly as intended and allows you to confirm your selections before finalizing the deployment.
VoltageGPU automatically adds an agent SSH key to your pod to enable features like the web terminal and to monitor pod health.
If you skip the agent SSH key:
Recommendation: Keep the agent SSH key enabled unless you have a specific reason to disable it.
Once all configurations are set, click the Deploy button to create and start your pod. The pod will be provisioned with the selected hardware, template, and access configurations.
Make sure your SSH key is properly configured before deployment to ensure secure access to your pod.
Browse available GPUs and deploy in under 60 seconds.