From 3192e369a2a9e99d307e177f379c1a8790f53dbd Mon Sep 17 00:00:00 2001 From: Ross Kramer Date: Sat, 30 Mar 2024 22:07:27 -0400 Subject: [PATCH] Adding the installation of Red Hat OpenShift Serverless Knative Eventing to support watsonx assistant --- docs/3-Installation/1-CP4D.mdx | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/docs/3-Installation/1-CP4D.mdx b/docs/3-Installation/1-CP4D.mdx index dc949270..bde82c05 100644 --- a/docs/3-Installation/1-CP4D.mdx +++ b/docs/3-Installation/1-CP4D.mdx @@ -365,7 +365,6 @@ cpd-cli manage apply-olm \ --components=${COMPONENTS} ``` - ### Setup instance topology ```tsx @@ -375,4 +374,34 @@ cpd-cli manage setup-instance-topology \ --cpd_instance_ns=${PROJECT_CPD_INST_OPERANDS} \ --license_acceptance=true \ --block_storage_class=${STG_CLASS_BLOCK} +``` + +### Installing Red Hat OpenShift Serverless Knative Eventing + +Red Hat OpenShift Serverless Knative Eventing and IBM Events are required for **watsonx Assistant** + +#### Authorize the projects where the software will be installed to communicate +```tsx +cpd-cli manage authorize-instance-topology \ +--release=${VERSION} \ +--cpd_operator_ns=ibm-knative-events \ +--cpd_instance_ns=knative-eventing +``` + +#### Install the IBM Events Operator in the ibm-knative-events project + +```tsx +cpd-cli manage setup-instance-topology \ +--release=${VERSION} \ +--cpd_operator_ns=ibm-knative-events \ +--cpd_instance_ns=knative-eventing \ +--license_acceptance=true +``` + +#### Finally installing the OSKE + +```tsx +cpd-cli manage deploy-knative-eventing \ +--release=${VERSION} \ +--block_storage_class=${STG_CLASS_BLOCK} ``` \ No newline at end of file