Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions applications/rubin-rag/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,12 @@ RAG helpers for documentation searches
| weaviate.env.AUTHORIZATION_ADMINLIST_ENABLED | string | `"true"` | |
| weaviate.env.AUTHORIZATION_ADMINLIST_USERS | string | `"admin"` | |
| weaviate.envSecrets.AUTHENTICATION_APIKEY_ALLOWED_KEYS | string | `"rubin-rag"` | |
| weaviate.limits.cpu | string | `"500m"` | |
| weaviate.limits.memory | string | `"300Mi"` | |
| weaviate.modules.generative-openai.enabled | bool | `true` | |
| weaviate.modules.text2vec-openai.enabled | bool | `true` | |
| weaviate.requests.cpu | string | `"300m"` | |
| weaviate.requests.memory | string | `"150Mi"` | |
| weaviate.resources.limits.cpu | string | `"500m"` | |
| weaviate.resources.limits.memory | string | `"300Mi"` | |
| weaviate.resources.requests.cpu | string | `"300m"` | |
| weaviate.resources.requests.memory | string | `"150Mi"` | |
| weaviate.storage.fullnameOverride | string | `"weaviate-data-alt"` | |
| weaviate.storage.size | string | `"32Gi"` | |
| weaviate.storage.storageClassName | string | `"wekafs--sdf-k8s01"` | |
17 changes: 11 additions & 6 deletions applications/rubin-rag/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,13 @@ global:
vaultSecretsPath: null

weaviate:
requests:
cpu: '300m'
memory: '150Mi'
limits:
cpu: '500m'
memory: '300Mi'
resources:
requests:
cpu: '300m'
memory: '150Mi'
limits:
cpu: '500m'
memory: '300Mi'
authentication:
anonymous_access:
enabled: true
Expand All @@ -84,3 +85,7 @@ weaviate:
enabled: true
text2vec-openai:
enabled: true
storage:
size: 32Gi
storageClassName: "wekafs--sdf-k8s01"
fullnameOverride: "weaviate-data-alt"
Loading