For the complete documentation index, see llms.txt. This page is also available as Markdown.

Control Plane System Requirements

The NVIDIA Run:ai control plane is a Kubernetes application. It has specific system and Kubernetes environment requirements that must be met before installation. These requirements ensure that the control plane services can be deployed successfully.

This section describes the minimum hardware, supported Kubernetes/OpenShift versions, and environment prerequisites required for the NVIDIA Run:ai control plane installation. Environment prerequisites include critical infrastructure components such as a properly configured Fully Qualified Domain Name (FQDN) with DNS resolution, TLS certificate configuration and ingress readiness.

Installer Machine

The machine running the installation script (typically the Kubernetes master) must have:

  • At least 50GB of free space

  • Docker installed

  • Helm 3.14 or later

Note

If you are installing an air-gapped version of NVIDIA Run:ai, the NVIDIA Run:ai software artifacts include the Helm binary.

Hardware Requirements

The following hardware requirements are for the NVIDIA Run:ai control plane system nodes. By default, all control plane services run on all available nodes in the control plane app cluster.

Architecture

  • x86 - Supported for Kubernetes and OpenShift

  • ARM - Supported for Kubernetes and OpenShift

NVIDIA Run:ai Control Plane - System Nodes

This configuration is the minimum requirement you need to install and use NVIDIA Run:ai control plane:

Component
Required Capacity

CPU

10 cores

Memory

12GB

Disk space

110GB

Note

To designate nodes to NVIDIA Run:ai system services, follow the instructions as described in System nodes.

If NVIDIA Run:ai control plane is planned to be installed on the same Kubernetes cluster as the NVIDIA Run:ai cluster, make sure the cluster Hardware requirements are considered in addition to the NVIDIA Run:ai control plane hardware requirements.

Software Requirements

The following software requirements must be fulfilled.

Operating System

  • Any Linux operating system supported by both Kubernetes and NVIDIA GPU Operator

  • Internal tests are being performed on Ubuntu 22.04 and CoreOS for OpenShift.

Network Time Protocol

Nodes are required to be synchronized by time using NTP (Network Time Protocol) for proper system functionality.

Kubernetes Distribution

NVIDIA Run:ai control plane requires Kubernetes. The following Kubernetes distributions are supported:

  • Vanilla Kubernetes

  • OpenShift Container Platform (OCP)

  • Elastic Kubernetes Engine (EKS)

  • Google Kubernetes Engine (GKE)

  • Azure Kubernetes Service (AKS)

  • Oracle Kubernetes Engine (OKE)

  • Rancher Kubernetes Engine 2 (RKE2)

Note

The latest release of the NVIDIA Run:ai control plane supports Kubernetes 1.33 to 1.35 and OpenShift 4.18 to 4.21.

For the full list of NVIDIA Run:ai compatible distributions and per-version Kubernetes and OpenShift compatibility, see Support matrix.

NVIDIA Run:ai Namespace

The NVIDIA Run:ai control plane uses a namespace or project (OpenShift) called runai-backend. Use the following to create the namespace/project:

Default Storage Class

Note

Default storage class applies to Kubernetes only.

The NVIDIA Run:ai control plane requires a default storage class to create persistent volume claims for NVIDIA Run:ai storage. The storage class, as per Kubernetes standards, controls the reclaim behavior, whether the NVIDIA Run:ai persistent data is saved or deleted when the NVIDIA Run:ai control plane is deleted.

Note

For a simple (non-production) storage class example see Kubernetes Local Storage Class. The storage class will set the directory /opt/local-path-provisioner to be used across all nodes as the path for provisioning persistent volumes. Then set the new storage class as default:

Kubernetes Load Balancer

In Kubernetes, services of type LoadBalancer are used to expose applications outside the cluster through a single, stable IP address, providing a consistent entry point for external traffic. In managed cloud environments this capability is built-in, while in self-hosted and on-premise deployments it must be provided explicitly.

MetalLB fulfills this role by allocating external IP addresses from a predefined pool and advertising them on the external network, enabling access to services running inside the cluster.

In NVIDIA Run:ai, this is required to support north-south traffic, including access to the NVIDIA Run:ai control plane, APIs, UI, inference endpoints, and externally exposed development workspaces and training workloads.

  1. Reserve a range of IP addresses (recommended a full 32 subnet) for example: 172.20.10.0-172.20.10.255

  2. Install MetalLB:

  3. Create a YAML file named metalLB-config.yaml and replace <IPADDRESS-RANGE-START>-<IPADDRESS-RANGE-END> with the reserved range of IP addresses:

  4. Apply the YAML:

Kubernetes Ingress Controller

The NVIDIA Run:ai control plane requires Kubernetes Ingress Controller to be installed on the Kubernetes cluster.

  • OpenShift and RKE2 come with a pre-installed ingress controller.

  • Make sure that a default ingress controller, global.ingress.ingressClass is set. For more details, see Advanced control plane configurations.

There are multiple ways to install and configure an ingress controller. The following example demonstrates how to install and configure the HAProxy Kubernetes Ingress Controller using helm.

Vanilla Kubernetes
Managed Kubernetes (EKS, GKE, AKS)
Oracle Kubernetes Engine (OKE)

Fully Qualified Domain Name (FQDN)

Note

Fully Qualified Domain Name applies to Kubernetes only.

NVIDIA Run:ai services rely on a Fully Qualified Domain Name (FQDN) to route traffic to the control plane and enable communication between the control plane and connected clusters. You must configure a domain name for control plane access (for example, runai.mycorp.local). This cannot be an IP address. The FQDN must be resolvable within the organization's private network.

TLS Certificate

Kubernetes

You must have a TLS certificate that is associated with the FQDN for HTTPS access. Create a Kubernetes Secret named runai-backend-tls in the runai-backend namespace and include the path to the TLS --cert and its corresponding private --key by running the following:

  • Replace /path/to/fullchain.pem with the actual path to your TLS certificate.

  • Replace /path/to/private.pem with the actual path to your private key.

OpenShift

NVIDIA Run:ai uses the OpenShift default Ingress router for serving. The TLS certificate configured for this router must be issued by a trusted CA. For more details, see the OpenShift documentation on configuring certificates.

Local Certificate Authority (CA)

A local certificate authority serves as the root certificate for organizations that cannot use publicly trusted certificate authority. Follow the steps below to configure the local certificate authority.

In air-gapped environments, you must configure and install the local CA's public key in the Kubernetes cluster. This is required for the installation to succeed:

  1. Add the public key to the runai-backend namespace:

  1. When installing the control plane, make sure the following flag is added to the helm command --set global.customCA.enabled=true. See Install control plane.

External Postgres Database (Optional)

The NVIDIA Run:ai control plane installation includes a default PostgreSQL database. However, you may opt to use an existing PostgreSQL database if you have specific requirements or preferences as detailed in External Postgres database configuration. Note that only PostgreSQL version 16 is supported.

Last updated