Skip to content

Commit 8f6e1ea

Browse files
committed
remove unnecessary conditional checks for LLM, fix indentation
Signed-off-by: devpramod <[email protected]>
1 parent 27fd1d8 commit 8f6e1ea

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

helm-charts/chatqna/templates/deployment.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,10 @@ spec:
7676
value: {{ .Release.Name }}-guardrails-usvc
7777
- name: GUARDRAIL_SERVICE_PORT
7878
value: "9090"
79-
{{- if not .Values.externalLLM.enabled }}
80-
# LLM microservice connection - only used with internal LLM
8179
- name: LLM_SERVICE_HOST_IP
8280
value: {{ .Release.Name }}-llm-uservice
8381
- name: LLM_SERVICE_PORT
8482
value: "9000"
85-
{{- end }}
8683
- name: RERANK_SERVICE_HOST_IP
8784
value: {{ .Release.Name }}-reranking-usvc
8885
- name: RERANK_SERVICE_PORT

helm-charts/codegen/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ spec:
5353
value: {{ include "embedding-usvc.fullname" (index .Subcharts "embedding-usvc") | quote }}
5454
- name: EMBEDDER_PORT
5555
value: {{ index .Values "embedding-usvc" "service" "port" | quote }}
56-
{{- end }}
56+
{{- end }}
5757
securityContext:
5858
{{- toYaml .Values.securityContext | nindent 12 }}
5959
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"

0 commit comments

Comments
 (0)