Skip to content

Commit

Permalink
Use unified nginx helm chart
Browse files Browse the repository at this point in the history
- Add helm chart support for OPEA nginx

- Use unified nginx chart in E2E

Signed-off-by: Lianhao Lu <[email protected]>
  • Loading branch information
lianhao committed Dec 12, 2024
1 parent e9dc58a commit 002d680
Show file tree
Hide file tree
Showing 38 changed files with 580 additions and 795 deletions.
3 changes: 3 additions & 0 deletions helm-charts/audioqna/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,8 @@ dependencies:
version: 0-latest
repository: "file://../common/ui"
alias: audioqna-ui
- name: nginx
version: 0-latest
repository: "file://../common/nginx"
version: 0-latest
appVersion: "1.1"
107 changes: 0 additions & 107 deletions helm-charts/audioqna/templates/nginx-deployment.yaml

This file was deleted.

15 changes: 15 additions & 0 deletions helm-charts/audioqna/templates/nginx.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-nginx-config
labels:
{{- include "audioqna.labels" . | nindent 4 }}
data:
FRONTEND_SERVICE_IP: {{ include "ui.fullname" (index .Subcharts "audioqna-ui") | quote }}
FRONTEND_SERVICE_PORT: {{ index .Values "audioqna-ui" "service" "port" | quote }}
BACKEND_SERVICE_NAME: audioqna
BACKEND_SERVICE_IP: {{ include "audioqna.fullname" . | quote }}
BACKEND_SERVICE_PORT: {{ .Values.service.port | quote }}
9 changes: 5 additions & 4 deletions helm-charts/audioqna/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@ service:
type: ClusterIP
port: 3008

nginx:
service:
type: NodePort

nodeSelector: {}

tolerations: []
Expand All @@ -64,6 +60,11 @@ affinity: {}
tgi:
LLM_MODEL_ID: Intel/neural-chat-7b-v3-3

nginx:
cmName: "{{ .Release.Name }}-nginx-config"
service:
type: NodePort

audioqna-ui:
image:
repository: opea/audioqna-ui
Expand Down
3 changes: 3 additions & 0 deletions helm-charts/chatqna/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,8 @@ dependencies:
alias: chatqna-ui
version: 0-latest
repository: "file://../common/ui"
- name: nginx
version: 0-latest
repository: "file://../common/nginx"
version: 0-latest
appVersion: "v1.0"
130 changes: 0 additions & 130 deletions helm-charts/chatqna/templates/nginx-deployment.yaml

This file was deleted.

17 changes: 17 additions & 0 deletions helm-charts/chatqna/templates/nginx.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-nginx-config
labels:
{{- include "chatqna.labels" . | nindent 4 }}
data:
FRONTEND_SERVICE_IP: {{ include "ui.fullname" (index .Subcharts "chatqna-ui") | quote }}
FRONTEND_SERVICE_PORT: {{ index .Values "chatqna-ui" "service" "port" | quote }}
BACKEND_SERVICE_NAME: chatqna
BACKEND_SERVICE_IP: {{ include "chatqna.fullname" . | quote }}
BACKEND_SERVICE_PORT: {{ .Values.service.port | quote }}
DATAPREP_SERVICE_IP: {{ include "data-prep.fullname" (index .Subcharts "data-prep") | quote }}
DATAPREP_SERVICE_PORT: {{ index .Values "data-prep" "service" "port" | quote }}
9 changes: 5 additions & 4 deletions helm-charts/chatqna/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@ service:
type: ClusterIP
port: 8888

nginx:
service:
type: NodePort

nodeSelector: {}

tolerations: []
Expand All @@ -74,6 +70,11 @@ tgi:
guardrails-usvc:
enabled: false

nginx:
cmName: "{{ .Release.Name }}-nginx-config"
service:
type: NodePort

# If you would like to switch to traditional UI image
# Uncomment the following lines
# chatqna-ui:
Expand Down
3 changes: 3 additions & 0 deletions helm-charts/codegen/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@ dependencies:
version: 0-latest
repository: "file://../common/ui"
alias: codegen-ui
- name: nginx
version: 0-latest
repository: "file://../common/nginx"
version: 0-latest
appVersion: "v1.0"
Loading

0 comments on commit 002d680

Please sign in to comment.