The default installation of each of these operators is all we need:
- Red Hat OpenShift Serverless
- Red Hat OpenShift Service Mesh 2
- From your OpenShift console, switch to Administrator view, then navigate to Operators -> OperatorHub:

- Search for "Red Hat OpenShift AI", then click on the Red Hat Openshift AI operator:

- Click
Install:
- Click
Installagain:
- Wait for the operator to install:

- Once the operator is installed, navigate to
Installed Operators->Red Hat Openshift AI->DSCInitialization, and verify that the DSCI is ready:
If you want to use the version of TrustyAI that came bundled in the RHOAI release, follow these steps:
-
Navigate to
Installed Operators->Red Hat Openshift AI->Data Science Cluster, then hitCreate Data Science Cluster, then `Create:

Alternatively, you can watch the pods spin up in the redhat-ods-applications project:

Once the DSC reports that it's ready (or all the pods are up and running), you're good to go!
If you want to use a custom version of TrustyAI, e.g., the latest upstream TrustyAI, follow these steps:
- Navigate to
Installed Operators->Red Hat Openshift AI->Data Science Cluster, then hitCreate Data Science Cluster:
- From the DSC configuration page, set TrustyAI to
Removed, then hitCreate:
- Clone the TrustyAI Service Operator repo:
git clone https://github.com/trustyai-explainability/trustyai-service-operator - Navigate into the
trustyai-service-operatorrepo, and build the TrustyAI Operator manifests:
make manifest-gen NAMESPACE=redhat-ods-applications KUSTOMIZE=kustomize
The above command will use the latest, upstream TrustyAI operator. To use a custom version of the TrustyAI operator image, you can run:
make manifest-gen NAMESPACE=redhat-ods-applications KUSTOMIZE=kustomize OPERATOR_IMAGE=$YOUR_TRUSTYAI_OPERATOR_IMAGE
- A file will be created in
trustyai-service-operator/release/trustyai_bundle.yaml - Install the TrustyAI operator:
oc apply -f release/trustyai_bundle.yaml -n redhat-ods-applications
- Wait for the TrustyAI operator pod to spin up in the
redhat-ods-applicationsproject.
