diff --git a/charts/dify/Chart.yaml b/charts/dify/Chart.yaml index 48ded46..4b744cb 100644 --- a/charts/dify/Chart.yaml +++ b/charts/dify/Chart.yaml @@ -16,7 +16,7 @@ type: application # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.17.2 +version: 0.18.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/dify/templates/api-svc.yaml b/charts/dify/templates/api-svc.yaml index 15c1b37..73a157e 100644 --- a/charts/dify/templates/api-svc.yaml +++ b/charts/dify/templates/api-svc.yaml @@ -19,7 +19,7 @@ spec: clusterIP: {{ .Values.api.service.clusterIP }} {{- end }} ports: - - name: api + - name: http-api port: {{ .Values.api.service.port }} protocol: TCP targetPort: api diff --git a/charts/dify/templates/config.tpl b/charts/dify/templates/config.tpl index 6904576..6c80f84 100644 --- a/charts/dify/templates/config.tpl +++ b/charts/dify/templates/config.tpl @@ -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 }} @@ -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`. diff --git a/charts/dify/templates/service.yaml b/charts/dify/templates/service.yaml index f16eb3e..9770fc4 100644 --- a/charts/dify/templates/service.yaml +++ b/charts/dify/templates/service.yaml @@ -34,7 +34,7 @@ spec: type: {{ .Values.service.type }} {{- end }} ports: - - name: dify + - name: http-dify port: {{ .Values.service.port }} protocol: TCP targetPort: dify diff --git a/charts/dify/templates/web-svc.yaml b/charts/dify/templates/web-svc.yaml index a93babf..4e41c33 100644 --- a/charts/dify/templates/web-svc.yaml +++ b/charts/dify/templates/web-svc.yaml @@ -19,7 +19,7 @@ spec: clusterIP: {{ .Values.web.service.clusterIP }} {{- end }} ports: - - name: web + - name: http-web port: {{ .Values.web.service.port }} protocol: TCP targetPort: web