From 02fa59f21fdd4ba78b29fa2f3d1aa40fa15a9796 Mon Sep 17 00:00:00 2001 From: engineering Date: Mon, 30 Jun 2025 16:55:52 -0600 Subject: [PATCH] Changes to use localhost always to avoid dns issues --- charts/intel/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/intel/templates/deployment.yaml b/charts/intel/templates/deployment.yaml index 6d1c9a3..8cdb59e 100644 --- a/charts/intel/templates/deployment.yaml +++ b/charts/intel/templates/deployment.yaml @@ -38,7 +38,7 @@ spec: value: {{ .Values.ai.mode | quote }} {{- if eq .Values.ai.mode "bundled" }} - name: AI_BUNDLED_URL - value: "http://codetogether-llm:8000" + value: "http://localhost:8000" {{- end }} {{- if and .Values.ai.enabled (eq .Values.ai.mode "external") }} - name: AI_PROVIDER @@ -79,7 +79,7 @@ spec: {{- if .Values.ai.enabled }} - name: CT_HQ_OLLAMA_AI_URL value: {{ if eq .Values.ai.mode "bundled" }} - "http://codetogether-llm:8000" + "http://localhost:8000" {{ else }} {{ .Values.ai.url | quote }} {{ end }}