Persistent Volumes
The NeMo Platform uses persistent volume claims (PVCs) for jobs and files storage that can be mounted on multiple pods and nodes in read-write mode. This access mode is called ReadWriteMany (RWX) in Kubernetes. Using a ReadWriteMany-capable StorageClass is required for both jobs and files storage.
NVIDIA NIM microservices also scale, upgrade, and deploy more smoothly with an RWX-backed storage class.
The platform does not manage storage classes. You must install an appropriate storage provisioner (identified by a StorageClass) before installing the Helm chart.
Jobs and Files storage
The NeMo Platform chart creates a single shared PVC for jobs and files storage, configured under core.storage in values.yaml.
As an alternative to PVC-based file storage, you can configure the Files service to use S3 object storage. See File Storage for S3 configuration options. When using S3 for files, the shared PVC is still required for jobs storage.
Option 1: Create a new PVC (default)
- Confirm the
StorageClassexists in your cluster:
- Set
core.storagein yourvalues.yaml. Use a ReadWriteMany-capable StorageClass (e.g. NFS, CephFS):
If storageClass is empty (default), the cluster’s default StorageClass is used.
Option 2: Use an existing PersistentVolume
To use a pre-created PersistentVolume instead of having the chart create a PVC, set:
When set, the chart does not create a new PVC; pods mount the named volume.
NIM storage class
For NIM deployments launched via the NeMo Platform, you can set the default StorageClass used by NIM PVCs via platform config. In values.yaml, under platformConfig:
Replace "nfs" with your StorageClass name (e.g. oci-nfs, gp3). For NIM scaling and multi-node deployments, use a ReadWriteMany-capable StorageClass.
Refer to the platform configuration documentation for the full config reference.
Persistent volume options
Use a ReadWriteMany-capable filesystem such as NFS or CephFS so the volume can be mounted read-write across nodes and pods.
For CSI drivers, see the Kubernetes CSI Drivers table. Choose a driver that supports Read/Write Multiple in the Supported Access Modes column and matches your environment.
AWS persistent volumes
Amazon EFS
Amazon Elastic File System (EFS) provides scalable, shared file storage for Kubernetes. To use EFS:
- Install the Amazon EFS CSI driver in your cluster.
- Create an EFS file system accessible from the cluster.
- Configure a StorageClass and use it in
core.storage.storageClass(and optionally for NIM viaplatformConfig).
Amazon FSx for Lustre
For high-performance workloads:
- Install the FSx for Lustre CSI driver.
- Create an FSx for Lustre file system.
- Configure storage classes and reference them in
core.storage.storageClassor NIM config as needed.
Azure persistent volumes
On AKS, Azure Disk (managed-csi) only supports ReadWriteOnce (RWO). Use Azure Files for the shared RWX volumes required by NeMo Platform. PostgreSQL must use managed-csi because Azure Files does not support the POSIX permissions it requires.
- Enable the Azure Files CSI driver if not already installed in your cluster.
- Set
core.storage.storageClasstoazurefile(orazurefile-csion AKS 1.29+) andpostgresql.persistence.storageClasstomanaged-csi.
Oracle persistent volumes
On OKE with OCI File Storage, see Setting Up Storage for Kubernetes Clusters to make NFS-backed persistent volumes available, then set core.storage.storageClass (and NIM config if needed) accordingly.