You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ OpenShift to generate project proposals for specific Red Hat products.
19
19
- Red Hat Openshift cluster running in AWS. Supported regions are : us-east-1 us-east-2 us-west-1 us-west-2 ca-central-1 sa-east-1 eu-west-1 eu-west-2 eu-west-3 eu-central-1 eu-north-1 ap-northeast-1 ap-northeast-2 ap-northeast-3 ap-southeast-1 ap-southeast-2 ap-south-1.
20
20
- GPU Node to run Hugging Face Text Generation Inference server on Red Hat OpenShift cluster.
21
21
- Create a fork of the [rag-llm-gitops](https://github.com/validatedpatterns/rag-llm-gitops.git) Git repository.
22
-
-**EDB Postgres Operator Credentials** (Required for default database): The pattern uses the EDB Postgres for Kubernetes operator from the certified-operators catalog by default. This operator requires authentication to pull images from `docker.enterprisedb.com`. You will need to:
22
+
-**EDB Postgres Operator Credentials** (Required only if you select EDB): The EDB Postgres for Kubernetes operator from the certified-operators catalog requires authentication to pull images from `docker.enterprisedb.com`. You will need to:
23
23
1. Register for a free trial account at [EDB Registration](https://www.enterprisedb.com/accounts/register)
24
24
2. Obtain your subscription token from [EDB Repos Downloads](https://www.enterprisedb.com/repos-downloads)
25
25
3. Add the token to your `values-secret.yaml` file during configuration (see below)
To deploy a model that can requires an Hugging Face token, grab the [Hugging Face token](https://huggingface.co/settings/tokens) and accept the terms and conditions on the model page. Edit ~/values-secret-rag-llm-gitops.yaml to replace the `model Id` and the `Hugging Face` token.
124
124
125
-
**IMPORTANT**: If you are using the default EDB Postgres database (recommended), you must add your EDB subscription token to the `values-secret.yaml` file:
125
+
**IMPORTANT**: If you are using EDB Postgres for Kubernetes, you must add your EDB subscription token to the `values-secret.yaml` file:
126
126
127
127
```sh
128
128
secrets:
@@ -166,7 +166,7 @@ Alternatiely, follow the [instructions](./GPU_provisioning.md) to manually insta
166
166
167
167
### Deploy application
168
168
169
-
***Note:**: This pattern supports four types of vector databases: EDB Postgres forKubernetes, PGVector (local chart), Elasticsearch, and Redis. By default the pattern will deploy EDB Postgres for Kubernetes as a vector DB. To deploy PGVector locally, set `global.db.type` to `pgvector`in [values-global.yaml](./values-global.yaml).
169
+
***Note:**: This pattern supports four types of vector databases: PGVector (local chart), EDB Postgres forKubernetes, Elasticsearch, and Redis. By default the pattern will deploy PGVector as a vector DB. To deploy EDB, set `global.db.type` to `EDB`in [values-global.yaml](./values-global.yaml).
170
170
171
171
```yaml
172
172
---
@@ -179,7 +179,7 @@ global:
179
179
# Possible value for db.type = [REDIS, EDB, ELASTIC, pgvector]
180
180
db:
181
181
index: docs
182
-
type: EDB# <--- Default is EDB. Use REDIS, ELASTIC, or pgvector as needed.
182
+
type: pgvector# <--- Default is pgvector. Use EDB, REDIS, or ELASTIC as needed.
0 commit comments