Skip to content

Commit e71e113

Browse files
authored
Merge pull request rh-ai-quickstart#132 from ganeshmurthy/UPLOAD-DOCUMENTS-2
APPENG-4252: Adds the following features
2 parents 845a378 + 871c2d6 commit e71e113

5 files changed

Lines changed: 889 additions & 217 deletions

File tree

deploy/helm/rag/templates/deployment.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,18 @@ spec:
4040
- name: TAVILY_SEARCH_API_KEY
4141
value: {{ (index .Values "llama-stack").secrets.TAVILY_SEARCH_API_KEY | quote }}
4242
{{- end }}
43+
{{- if .Values.pgvector }}
44+
- name: PGVECTOR_HOST
45+
value: {{ .Values.pgvector.secret.host | quote }}
46+
- name: PGVECTOR_PORT
47+
value: {{ .Values.pgvector.secret.port | quote }}
48+
- name: PGVECTOR_USER
49+
value: {{ .Values.pgvector.secret.user | quote }}
50+
- name: PGVECTOR_PASSWORD
51+
value: {{ .Values.pgvector.secret.password | quote }}
52+
- name: PGVECTOR_DB
53+
value: {{ .Values.pgvector.secret.dbname | quote }}
54+
{{- end }}
4355
{{- if .Values.suggestedQuestions }}
4456
- name: RAG_QUESTION_SUGGESTIONS
4557
valueFrom:

0 commit comments

Comments
 (0)