Skip to content

Commit

Permalink
add quote to QDRANT_CLIENT_TIMEOUT/consoleApi/appApi #45
Browse files Browse the repository at this point in the history
lack of quote cause creating configmap error
  • Loading branch information
kaktos authored Mar 22, 2024
1 parent 3c71886 commit 9a93326
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/dify/templates/config.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ SECRET_KEY: {{ .Values.api.secretKey }}
# The base URL of console application api server, refers to the Console base URL of WEB service if console domain is
# different from api or web app domain.
# example: http://cloud.dify.ai
CONSOLE_API_URL: {{ .Values.api.url.consoleApi }}
CONSOLE_API_URL: {{ .Values.api.url.consoleApi | quote }}
# The URL for Web APP api server, refers to the Web App base URL of WEB service if web app domain is different from
# console or api domain.
# example: http://udify.app
APP_API_URL: {{ .Values.api.url.appApi }}
APP_API_URL: {{ .Values.api.url.appApi | quote }}
# The DSN for Sentry
{{- end }}

Expand Down Expand Up @@ -205,7 +205,7 @@ QDRANT_URL: {{ .Values.externalQdrant.endpoint }}
# The Qdrant API key.
QDRANT_API_KEY: {{ .Values.externalQdrant.apiKey }}
# The Qdrant clinet timeout setting.
QDRANT_CLIENT_TIMEOUT: 20
QDRANT_CLIENT_TIMEOUT: "20"
# The DSN for Sentry error reporting. If not set, Sentry error reporting will be disabled.
{{- else if .Values.externalMilvus.enabled}}
# Milvus configuration Only available when VECTOR_STORE is `milvus`.
Expand Down

0 comments on commit 9a93326

Please sign in to comment.