Customizing GenAI Builder secrets Innovation Release
- Hybrid Manager dual release strategy
- Documentation for the current Long-term support release
Required for deployments with the ai installation scenario enabled. These secrets handle model pulls and data encryption for AI agents.
NGC API Key: Required for pulling NVIDIA NIM models.
Fernet key: Used for symmetric encryption of sensitive data within the GenAI stack.
Object storage: Requires S3-compatible buckets (AWS, GCS, etc.) for the DataLake.
Creating GenAI Builder secrets
Note
Required for deployments with the ai installation scenario enabled. This scenario is included by default unless it is manually excluded via the spec.scenarios parameter in values.yaml.
One of the secrets you will create require an NGC API key. Create one following the NVIDIA NGC documentation to enable model image pulls.
You can create a Fernet key secret and NGC key secrets using the
edbctlCLI.For manual installations, run this command and follow the interactive prompts:
edbctl setup create-install-secrets --version <version> --scenario ai
If you are running the installation via a CI/CD pipeline, you must suppress interactive prompts. The method for achieving this depends on your
edbctlversion:Ensure the NGC API key you created above is available as a variable.
Configure
edbctlfor non-interactive behavior:edbctl config set interactive_mode off edbctl config set confirm_mode off
Run the setup command:
edbctl setup create-install-secrets --version <version> --scenario ai
This creates the Fernet key secret, as well as
nvidia-nim-secretsandngc-credsecrets in thedefaultnamespace with the appropriate replication annotations.Note
Fernet is a cryptographic library used by Python. It provides symmetric encryption/decryption and is required to store secret data.
The HM administrator must keep the Fernet key safe and back it up. The secret name and namespace depend on the version of Hybrid Manager you are running.
For versions 2026.2 and earlier, the solution is based on Griptape. Use the following command to retrieve the secret:
kubectl get secret -n upm-griptape fernet-secret -o yaml
For versions 2026.3 and later, the solution shifted to LangFlow. The secret is now stored in the default namespace:
kubectl get secret langflow-secret -n default -o yaml
Store the key safely.
Configure DataLake object storage for GenAI builder by creating a DataLake bucket in the object storage you're using for your Hybrid Manager deployment. GenAI Builder uses it to store structures, tools, and indexed data.
aws s3 mb s3://<your-datalake-bucket-name> –region <your-region>
gsutil mb -l <your-region> gs://<your-datalake-bucket-name>
Use your provider’s management console or CLI to create a bucket with a unique name for your DataLake bucket.
Capture the following information for your bucket. You will need it later when you first use the GenAI launchpad application. The console will prompt you for your DataLake bucket configuration, which requires:
DATA_LAKE_ROOT_BUCKET: The name of the bucket for use with DataLake.DATA_LAKE_S3_ACCESS_KEY: The access_key used to connect to the DataLake bucket.DATA_LAKE_S3_SECRET_ACCESS_KEY: The secret_access_key used to connect to the DataLake bucket.DATA_LAKE_S3_ENDPOINT_UR: The endpoint URL used to connect to the DataLake bucket.
Update the bucket's settings with the CORS configuration:
Update the bucket's settings to have the following CORS configuration:
[ { "AllowedHeaders": [ "*" ], "AllowedMethods": [ "PUT", "POST", "DELETE", "GET", "HEAD" ], "AllowedOrigins": [ "https://${PORTAL_DOMAIN_NAME}" ], "ExposeHeaders": [] } ]Where
https://${PORTAL_DOMAIN_NAME}is the domain configured for your Hybrid Manager.The S3 interoperability layer in GCS allows GenAI Builder to use GCS as an S3-compatible object store.
In the GCS console, under Settings, turn on the s3 interoperability.
Update or create a service account with the Storage Admin and Service Account Token Creator roles.
Create an HMAC key pair for the service account.
Create a config file with a CORS configuration that points at the Hybrid Manager endpoint:
cat cors-config.json [ { "origin": ["https://${PORTAL_DOMAIN_NAME}"], "method": ["GET", "PUT", "POST", "DELETE", "HEAD"], "responseHeader": ["*"], "maxAgeSeconds": 3600 } ]Where
https://${PORTAL_DOMAIN_NAME}is the domain configured for your Hybrid Manager.Apply the CORS configuration to the previously created bucket:
gsutil cors set cors-config.json gs://<bucket name>
Use your provider’s management console or CLI to configure cross-origin resource sharing (CORS) with Hybrid Manager.
- On this page
- Creating GenAI Builder secrets