LogoLogo
  • Voltage Park
    • Introduction
    • Quickstart
  • Products
    • On Demand
    • Long-Term Compute
  • On Demand
    • Getting Started
    • Dashboard
    • Deploy GPUs
      • Virtual Machines (VMs)
      • Bare Metal
    • My Instances
      • Jupyter Notebook
    • Deploy Storage
    • Attach Storage
    • Kubernetes
    • API
  • Organization
    • Account
    • Billing
  • Support
    • Support
    • Troubleshooting
      • Ubuntu Server Crash Troubleshooting Guide
      • Common Log Files for Troubleshooting
      • Options for Mounting VAST NFS Shares
      • InfiniBand Basic Setup
      • Local Storage (Configuring an LVM Volume on Voltage Park On-Demand Bare Metal Servers)
    • FAQs
  • Legal
    • Terms of Service
    • Compute Services Agreement
    • Privacy Policy
Powered by GitBook
On this page
  • Attaching Storage
  • Mounting Shared Storage
  • Unmounting Shared Storage
  1. On Demand

Attach Storage

PreviousDeploy StorageNextKubernetes

Last updated 2 months ago

Overview


Your storage volumes can be attached to bare metal GPU instances for use. Each bare metal rental can be attached to a single storage volume. A single storage volume can be attached to as many instances as you need.

There is currently no support for attaching on-demand storage to a virtualized rental.

Attaching Storage


  1. Navigate to the My Instances page and open the Details drawer of the instance you want to attach storage to.

  1. Tab over to the Shared Storage tab of the instance drawer.

  1. In the options that appear either choose the storage volume you want to attach to the instance, or choose to deploy a New Shared Storage Volume to attach.

This same interface can be used to detach or switch the storage volume attached to the instance.

Mounting Shared Storage


To mount an attached storage volume to your GPU instance, ssh into the instance (ssh command found in the instance's Details drawer under Connect).

sudo apt install nfs-common

Create a directory on the system where you will mount your storage volume.

sudo mkdir /data

Add the configuration for your networked storage connection to the File System Table (/etc/fstab). You need to point the configuration to the storage volume's virtual IP.

You can find this virtual ip in the Mounting your storage volume dropdown in the instance Details drawer, or in the storage entry on the My Shared Storage page.

<storage vip>:/data /data nfs rw,nconnect=16,nfsvers=3 0 0

Once you have updated the configuration in /etc/fstab run the following command to mount the volume.

sudo mount -a

To confirm that the volume mounted correctly, run the following command and make sure you see your target drive (/data) has been successfully connected to your storage volume's virtual IP.

df -h

Unmounting Shared Storage


You may want to unmount shared storage from a GPU instance if you are swapping out the attached storage volume (prior to attaching and mounting the new storage volume), or perhaps you are done using the storage volume and have terminated the rental.

sudo umount /data

Make sure to remove any configuration for the storage volume previously added to the File System Table (/etc/fstab).

Make sure the instance has the necessary dependency installed.

Simply run the command on the mount drive to unmount the storage volume.

Network File System
umount