Preparations
The following section provides the information needed to prepare for a NVIDIA Run:ai installation.
Software artifacts
The following software artifacts should be used when installing the control plane and cluster.
Kubernetes
OpenShift
Private docker registry (optional)
Set up your environment
External Postgres database (optional)
If you have opted to use an external PostgreSQL database, you need to perform initial setup to ensure successful installation. Follow these steps:
Create a SQL script file, edit the parameters below, and save it locally:
Replace
<DATABASE_NAME>
with a dedicate database name for NVIDIA Run:ai in your PostgreSQL database.Replace
<ROLE_NAME>
with a dedicated role name (user) for NVIDIA Run:ai database.Replace
<ROLE_PASSWORD>
with a password for the new PostgreSQL role.Replace
<GRAFANA_PASSWORD>
with the password to be set for Grafana integration.
Run the following command on a machine where PostgreSQL client (
pgsql
) is installed:Replace
<POSTGRESQL_HOST>
with the PostgreSQL ip address or hostname.Replace
<POSTGRESQL_USER>
with the PostgreSQL username.Replace
<POSTGRESQL_PORT>
with the port number where PostgreSQL is running.Replace
<POSTGRESQL_DB>
with the name of your PostgreSQL database.Replace
<POSTGRESQL_DB>
with the name of your PostgreSQL database.Replace
<SQL_FILE>
with the path to the SQL script created in the previous step.
Last updated