Skip to content

Commit 05f9828

Browse files
WenjiaoYuepre-commit-ci[bot]
andauthoredSep 19, 2024··
Add nginx and UI to the ChatQnA manifest (#848)
Signed-off-by: Yue, Wenjiao <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 6c36448 commit 05f9828

File tree

6 files changed

+52
-165
lines changed

6 files changed

+52
-165
lines changed
 

‎ChatQnA/kubernetes/intel/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
> You can also customize the "MODEL_ID" if needed.
88
>
99
> You need to make sure you have created the directory `/mnt/opea-models` to save the cached model on the node where the ChatQnA workload is running. Otherwise, you need to modify the `chatqna.yaml` file to change the `model-volume` to a directory that exists on the node.
10+
>
11+
> File upload size limit: The maximum size for uploaded files is 10GB.
1012
1113
## Deploy On Xeon
1214

‎ChatQnA/kubernetes/intel/cpu/xeon/manifest/chatqna-guardrails.yaml

+10-33
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,4 @@
11
---
2-
# Source: chatqna/charts/chatqna-ui/templates/configmap.yaml
3-
# Copyright (C) 2024 Intel Corporation
4-
# SPDX-License-Identifier: Apache-2.0
5-
6-
apiVersion: v1
7-
kind: ConfigMap
8-
metadata:
9-
name: chatqna-chatqna-ui-config
10-
labels:
11-
helm.sh/chart: chatqna-ui-1.0.0
12-
app.kubernetes.io/name: chatqna-ui
13-
app.kubernetes.io/instance: chatqna
14-
app.kubernetes.io/version: "v1.0"
15-
app.kubernetes.io/managed-by: Helm
16-
data:
17-
APP_BACKEND_SERVICE_ENDPOINT: "/v1/chatqna"
18-
APP_DATA_PREP_SERVICE_URL: "/v1/dataprep"
19-
CHAT_BASE_URL: "/v1/chatqna"
20-
UPLOAD_FILE_BASE_URL: "/v1/dataprep"
21-
GET_FILE: "/v1/dataprep/get_file"
22-
DELETE_FILE: "/v1/dataprep/delete_file"
23-
BASE_URL: "/v1/chatqna"
24-
DOC_BASE_URL: "/v1/chatqna"
25-
BASIC_URL: "/v1/chatqna"
26-
VITE_CODE_GEN_URL: "/v1/chatqna"
27-
VITE_DOC_SUM_URL: "/v1/chatqna"
28-
---
292
# Source: chatqna/charts/data-prep/templates/configmap.yaml
303
# Copyright (C) 2024 Intel Corporation
314
# SPDX-License-Identifier: Apache-2.0
@@ -283,12 +256,19 @@ data:
283256
listen 80;
284257
listen [::]:80;
285258
259+
proxy_connect_timeout 600;
260+
proxy_send_timeout 600;
261+
proxy_read_timeout 600;
262+
send_timeout 600;
263+
264+
client_max_body_size 10G;
265+
286266
location /home {
287267
alias /usr/share/nginx/html/index.html;
288268
}
289269
290270
location / {
291-
proxy_pass http://chatqna-chatqna-ui:5174;
271+
proxy_pass http://chatqna-chatqna-ui:5173;
292272
proxy_set_header Host $host;
293273
proxy_set_header X-Real-IP $remote_addr;
294274
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -349,7 +329,7 @@ metadata:
349329
spec:
350330
type: ClusterIP
351331
ports:
352-
- port: 5174
332+
- port: 5173
353333
targetPort: ui
354334
protocol: TCP
355335
name: ui
@@ -711,12 +691,9 @@ spec:
711691
{}
712692
containers:
713693
- name: chatqna-ui
714-
envFrom:
715-
- configMapRef:
716-
name: chatqna-chatqna-ui-config
717694
securityContext:
718695
{}
719-
image: "opea/chatqna-conversation-ui:latest"
696+
image: "opea/chatqna-ui:latest"
720697
imagePullPolicy: IfNotPresent
721698
ports:
722699
- name: ui

‎ChatQnA/kubernetes/intel/cpu/xeon/manifest/chatqna.yaml

+10-33
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,4 @@
11
---
2-
# Source: chatqna/charts/chatqna-ui/templates/configmap.yaml
3-
# Copyright (C) 2024 Intel Corporation
4-
# SPDX-License-Identifier: Apache-2.0
5-
6-
apiVersion: v1
7-
kind: ConfigMap
8-
metadata:
9-
name: chatqna-chatqna-ui-config
10-
labels:
11-
helm.sh/chart: chatqna-ui-1.0.0
12-
app.kubernetes.io/name: chatqna-ui
13-
app.kubernetes.io/instance: chatqna
14-
app.kubernetes.io/version: "v1.0"
15-
app.kubernetes.io/managed-by: Helm
16-
data:
17-
APP_BACKEND_SERVICE_ENDPOINT: "/v1/chatqna"
18-
APP_DATA_PREP_SERVICE_URL: "/v1/dataprep"
19-
CHAT_BASE_URL: "/v1/chatqna"
20-
UPLOAD_FILE_BASE_URL: "/v1/dataprep"
21-
GET_FILE: "/v1/dataprep/get_file"
22-
DELETE_FILE: "/v1/dataprep/delete_file"
23-
BASE_URL: "/v1/chatqna"
24-
DOC_BASE_URL: "/v1/chatqna"
25-
BASIC_URL: "/v1/chatqna"
26-
VITE_CODE_GEN_URL: "/v1/chatqna"
27-
VITE_DOC_SUM_URL: "/v1/chatqna"
28-
---
292
# Source: chatqna/charts/data-prep/templates/configmap.yaml
303
# Copyright (C) 2024 Intel Corporation
314
# SPDX-License-Identifier: Apache-2.0
@@ -233,12 +206,19 @@ data:
233206
listen 80;
234207
listen [::]:80;
235208
209+
proxy_connect_timeout 600;
210+
proxy_send_timeout 600;
211+
proxy_read_timeout 600;
212+
send_timeout 600;
213+
214+
client_max_body_size 10G;
215+
236216
location /home {
237217
alias /usr/share/nginx/html/index.html;
238218
}
239219
240220
location / {
241-
proxy_pass http://chatqna-chatqna-ui:5174;
221+
proxy_pass http://chatqna-chatqna-ui:5173;
242222
proxy_set_header Host $host;
243223
proxy_set_header X-Real-IP $remote_addr;
244224
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -299,7 +279,7 @@ metadata:
299279
spec:
300280
type: ClusterIP
301281
ports:
302-
- port: 5174
282+
- port: 5173
303283
targetPort: ui
304284
protocol: TCP
305285
name: ui
@@ -611,12 +591,9 @@ spec:
611591
{}
612592
containers:
613593
- name: chatqna-ui
614-
envFrom:
615-
- configMapRef:
616-
name: chatqna-chatqna-ui-config
617594
securityContext:
618595
{}
619-
image: "opea/chatqna-conversation-ui:latest"
596+
image: "opea/chatqna-ui:latest"
620597
imagePullPolicy: IfNotPresent
621598
ports:
622599
- name: ui

‎ChatQnA/kubernetes/intel/cpu/xeon/manifest/chatqna_bf16.yaml

+10-33
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,4 @@
11
---
2-
# Source: chatqna/charts/chatqna-ui/templates/configmap.yaml
3-
# Copyright (C) 2024 Intel Corporation
4-
# SPDX-License-Identifier: Apache-2.0
5-
6-
apiVersion: v1
7-
kind: ConfigMap
8-
metadata:
9-
name: chatqna-chatqna-ui-config
10-
labels:
11-
helm.sh/chart: chatqna-ui-1.0.0
12-
app.kubernetes.io/name: chatqna-ui
13-
app.kubernetes.io/instance: chatqna
14-
app.kubernetes.io/version: "v1.0"
15-
app.kubernetes.io/managed-by: Helm
16-
data:
17-
APP_BACKEND_SERVICE_ENDPOINT: "/v1/chatqna"
18-
APP_DATA_PREP_SERVICE_URL: "/v1/dataprep"
19-
CHAT_BASE_URL: "/v1/chatqna"
20-
UPLOAD_FILE_BASE_URL: "/v1/dataprep"
21-
GET_FILE: "/v1/dataprep/get_file"
22-
DELETE_FILE: "/v1/dataprep/delete_file"
23-
BASE_URL: "/v1/chatqna"
24-
DOC_BASE_URL: "/v1/chatqna"
25-
BASIC_URL: "/v1/chatqna"
26-
VITE_CODE_GEN_URL: "/v1/chatqna"
27-
VITE_DOC_SUM_URL: "/v1/chatqna"
28-
---
292
# Source: chatqna/charts/data-prep/templates/configmap.yaml
303
# Copyright (C) 2024 Intel Corporation
314
# SPDX-License-Identifier: Apache-2.0
@@ -234,12 +207,19 @@ data:
234207
listen 80;
235208
listen [::]:80;
236209
210+
proxy_connect_timeout 600;
211+
proxy_send_timeout 600;
212+
proxy_read_timeout 600;
213+
send_timeout 600;
214+
215+
client_max_body_size 10G;
216+
237217
location /home {
238218
alias /usr/share/nginx/html/index.html;
239219
}
240220
241221
location / {
242-
proxy_pass http://chatqna-chatqna-ui:5174;
222+
proxy_pass http://chatqna-chatqna-ui:5173;
243223
proxy_set_header Host $host;
244224
proxy_set_header X-Real-IP $remote_addr;
245225
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -300,7 +280,7 @@ metadata:
300280
spec:
301281
type: ClusterIP
302282
ports:
303-
- port: 5174
283+
- port: 5173
304284
targetPort: ui
305285
protocol: TCP
306286
name: ui
@@ -612,12 +592,9 @@ spec:
612592
{}
613593
containers:
614594
- name: chatqna-ui
615-
envFrom:
616-
- configMapRef:
617-
name: chatqna-chatqna-ui-config
618595
securityContext:
619596
{}
620-
image: "opea/chatqna-conversation-ui:latest"
597+
image: "opea/chatqna-ui:latest"
621598
imagePullPolicy: IfNotPresent
622599
ports:
623600
- name: ui

‎ChatQnA/kubernetes/intel/hpu/gaudi/manifest/chatqna-guardrails.yaml

+10-33
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,4 @@
11
---
2-
# Source: chatqna/charts/chatqna-ui/templates/configmap.yaml
3-
# Copyright (C) 2024 Intel Corporation
4-
# SPDX-License-Identifier: Apache-2.0
5-
6-
apiVersion: v1
7-
kind: ConfigMap
8-
metadata:
9-
name: chatqna-chatqna-ui-config
10-
labels:
11-
helm.sh/chart: chatqna-ui-1.0.0
12-
app.kubernetes.io/name: chatqna-ui
13-
app.kubernetes.io/instance: chatqna
14-
app.kubernetes.io/version: "v1.0"
15-
app.kubernetes.io/managed-by: Helm
16-
data:
17-
APP_BACKEND_SERVICE_ENDPOINT: "/v1/chatqna"
18-
APP_DATA_PREP_SERVICE_URL: "/v1/dataprep"
19-
CHAT_BASE_URL: "/v1/chatqna"
20-
UPLOAD_FILE_BASE_URL: "/v1/dataprep"
21-
GET_FILE: "/v1/dataprep/get_file"
22-
DELETE_FILE: "/v1/dataprep/delete_file"
23-
BASE_URL: "/v1/chatqna"
24-
DOC_BASE_URL: "/v1/chatqna"
25-
BASIC_URL: "/v1/chatqna"
26-
VITE_CODE_GEN_URL: "/v1/chatqna"
27-
VITE_DOC_SUM_URL: "/v1/chatqna"
28-
---
292
# Source: chatqna/charts/data-prep/templates/configmap.yaml
303
# Copyright (C) 2024 Intel Corporation
314
# SPDX-License-Identifier: Apache-2.0
@@ -285,12 +258,19 @@ data:
285258
listen 80;
286259
listen [::]:80;
287260
261+
proxy_connect_timeout 600;
262+
proxy_send_timeout 600;
263+
proxy_read_timeout 600;
264+
send_timeout 600;
265+
266+
client_max_body_size 10G;
267+
288268
location /home {
289269
alias /usr/share/nginx/html/index.html;
290270
}
291271
292272
location / {
293-
proxy_pass http://chatqna-chatqna-ui:5174;
273+
proxy_pass http://chatqna-chatqna-ui:5173;
294274
proxy_set_header Host $host;
295275
proxy_set_header X-Real-IP $remote_addr;
296276
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -351,7 +331,7 @@ metadata:
351331
spec:
352332
type: ClusterIP
353333
ports:
354-
- port: 5174
334+
- port: 5173
355335
targetPort: ui
356336
protocol: TCP
357337
name: ui
@@ -713,12 +693,9 @@ spec:
713693
{}
714694
containers:
715695
- name: chatqna-ui
716-
envFrom:
717-
- configMapRef:
718-
name: chatqna-chatqna-ui-config
719696
securityContext:
720697
{}
721-
image: "opea/chatqna-conversation-ui:latest"
698+
image: "opea/chatqna-ui:latest"
722699
imagePullPolicy: IfNotPresent
723700
ports:
724701
- name: ui

‎ChatQnA/kubernetes/intel/hpu/gaudi/manifest/chatqna.yaml

+10-33
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,4 @@
11
---
2-
# Source: chatqna/charts/chatqna-ui/templates/configmap.yaml
3-
# Copyright (C) 2024 Intel Corporation
4-
# SPDX-License-Identifier: Apache-2.0
5-
6-
apiVersion: v1
7-
kind: ConfigMap
8-
metadata:
9-
name: chatqna-chatqna-ui-config
10-
labels:
11-
helm.sh/chart: chatqna-ui-1.0.0
12-
app.kubernetes.io/name: chatqna-ui
13-
app.kubernetes.io/instance: chatqna
14-
app.kubernetes.io/version: "v1.0"
15-
app.kubernetes.io/managed-by: Helm
16-
data:
17-
APP_BACKEND_SERVICE_ENDPOINT: "/v1/chatqna"
18-
APP_DATA_PREP_SERVICE_URL: "/v1/dataprep"
19-
CHAT_BASE_URL: "/v1/chatqna"
20-
UPLOAD_FILE_BASE_URL: "/v1/dataprep"
21-
GET_FILE: "/v1/dataprep/get_file"
22-
DELETE_FILE: "/v1/dataprep/delete_file"
23-
BASE_URL: "/v1/chatqna"
24-
DOC_BASE_URL: "/v1/chatqna"
25-
BASIC_URL: "/v1/chatqna"
26-
VITE_CODE_GEN_URL: "/v1/chatqna"
27-
VITE_DOC_SUM_URL: "/v1/chatqna"
28-
---
292
# Source: chatqna/charts/data-prep/templates/configmap.yaml
303
# Copyright (C) 2024 Intel Corporation
314
# SPDX-License-Identifier: Apache-2.0
@@ -234,12 +207,19 @@ data:
234207
listen 80;
235208
listen [::]:80;
236209
210+
proxy_connect_timeout 600;
211+
proxy_send_timeout 600;
212+
proxy_read_timeout 600;
213+
send_timeout 600;
214+
215+
client_max_body_size 10G;
216+
237217
location /home {
238218
alias /usr/share/nginx/html/index.html;
239219
}
240220
241221
location / {
242-
proxy_pass http://chatqna-chatqna-ui:5174;
222+
proxy_pass http://chatqna-chatqna-ui:5173;
243223
proxy_set_header Host $host;
244224
proxy_set_header X-Real-IP $remote_addr;
245225
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -300,7 +280,7 @@ metadata:
300280
spec:
301281
type: ClusterIP
302282
ports:
303-
- port: 5174
283+
- port: 5173
304284
targetPort: ui
305285
protocol: TCP
306286
name: ui
@@ -612,12 +592,9 @@ spec:
612592
{}
613593
containers:
614594
- name: chatqna-ui
615-
envFrom:
616-
- configMapRef:
617-
name: chatqna-chatqna-ui-config
618595
securityContext:
619596
{}
620-
image: "opea/chatqna-conversation-ui:latest"
597+
image: "opea/chatqna-ui:latest"
621598
imagePullPolicy: IfNotPresent
622599
ports:
623600
- name: ui

0 commit comments

Comments
 (0)
Please sign in to comment.