mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-30 04:31:49 +02:00
15 lines
640 B
YAML
Executable File
15 lines
640 B
YAML
Executable File
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ .Values.config.envConfigMapName }}
|
|
labels:
|
|
{{- include "danswer-stack.labels" . | nindent 4 }}
|
|
data:
|
|
INTERNAL_URL: "http://{{ include "danswer-stack.fullname" . }}-api-service:{{ .Values.api.service.port | default 8080 }}"
|
|
POSTGRES_HOST: {{ .Release.Name }}-postgresql
|
|
VESPA_HOST: "document-index-service"
|
|
MODEL_SERVER_HOST: "{{ include "danswer-stack.fullname" . }}-inference-model-service"
|
|
INDEXING_MODEL_SERVER_HOST: "{{ include "danswer-stack.fullname" . }}-indexing-model-service"
|
|
{{- range $key, $value := .Values.configMap }}
|
|
{{ $key }}: "{{ $value }}"
|
|
{{- end }} |