diff --git a/charts/langsmith/templates/_helpers.tpl b/charts/langsmith/templates/_helpers.tpl index e9e2a2df..0639bffd 100644 --- a/charts/langsmith/templates/_helpers.tpl +++ b/charts/langsmith/templates/_helpers.tpl @@ -251,14 +251,6 @@ Template containing common environment variables that are used by several servic - name: FF_PERSONAL_ORGS_DISABLED value: {{ .Values.config.personalOrgsDisabled | quote }} {{- end }} -- name: GO_ENDPOINT - value: http://{{- include "langsmith.fullname" . }}-{{.Values.platformBackend.name}}:{{ .Values.platformBackend.service.port }} -- name: GO_ACE_ENDPOINT - value: http://{{- include "langsmith.fullname" . }}-{{.Values.aceBackend.name}}:{{ .Values.aceBackend.service.port }} -- name: PLAYGROUND_ENDPOINT - value: http://{{- include "langsmith.fullname" . }}-{{.Values.playground.name}}:{{ .Values.playground.service.port }} -- name: SMITH_BACKEND_ENDPOINT - value: http://{{- include "langsmith.fullname" . }}-{{.Values.backend.name}}:{{ .Values.backend.service.port }} {{- if .Values.config.ttl.enabled }} - name: FF_TRACE_TIERS_ENABLED value: {{ .Values.config.ttl.enabled | quote }} diff --git a/charts/langsmith/templates/config-map.yaml b/charts/langsmith/templates/config-map.yaml index aa178a14..577c9bb6 100644 --- a/charts/langsmith/templates/config-map.yaml +++ b/charts/langsmith/templates/config-map.yaml @@ -26,3 +26,6 @@ data: {{- end }} LANGCHAIN_ENV: "local_kubernetes" GO_ENDPOINT: "http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }}" + GO_ACE_ENDPOINT: "http://{{ include "langsmith.fullname" . }}-{{.Values.aceBackend.name}}:{{ .Values.aceBackend.service.port }}" + PLAYGROUND_ENDPOINT: "http://{{ include "langsmith.fullname" . }}-{{.Values.playground.name}}:{{ .Values.playground.service.port }}" + SMITH_BACKEND_ENDPOINT: "http://{{ include "langsmith.fullname" . }}-{{.Values.backend.name}}:{{ .Values.backend.service.port }}"