diff --git a/charts/dify/Chart.yaml b/charts/dify/Chart.yaml index 3d29f40..56aec23 100644 --- a/charts/dify/Chart.yaml +++ b/charts/dify/Chart.yaml @@ -20,13 +20,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.3.0 +version: 0.3.1 # 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 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.6.2" +appVersion: "0.6.3" dependencies: - name: redis diff --git a/charts/dify/README.md b/charts/dify/README.md index 1268076..4db348c 100644 --- a/charts/dify/README.md +++ b/charts/dify/README.md @@ -17,14 +17,14 @@ global: # Set to the latest version of dify # Check the version here: https://github.com/langgenius/dify/releases # If not set, Using the default value in Chart.yaml - tag: "0.6.2" -extraBackendEnvs: -- name: SECRET_KEY - value: "generate your own one" -- name: LOG_LEVEL - value: "DEBUG" -- name: VECTOR_STORE - value: "milvus" + tag: "0.6.3" + extraBackendEnvs: + - name: SECRET_KEY + value: "generate your own one" + - name: LOG_LEVEL + value: "DEBUG" + - name: VECTOR_STORE + value: "milvus" ingress: enabled: true @@ -50,7 +50,7 @@ To upgrade app, change the value of `global.image.tag` to the desired version ``` global: image: - tag: "0.6.2" + tag: "0.6.3" ``` Then upgrade the app with helm command diff --git a/charts/dify/templates/_helpers.tpl b/charts/dify/templates/_helpers.tpl index 3dafa73..a38a642 100644 --- a/charts/dify/templates/_helpers.tpl +++ b/charts/dify/templates/_helpers.tpl @@ -62,7 +62,7 @@ Create the name of the service account to use {{- end }} {{- define "dify.baseUrl" -}} -{{ if .Values.global.enableTLS }}https://{{ else }}http://{{ end }}{{.Values.global.host}} +{{ if .Values.global.enableTLS }}https://{{ else }}http://{{ end }}{{.Values.global.host}}{{ if .Values.global.port }}:{{.Values.global.port}}{{ end }} {{- end }} {{/* diff --git a/charts/dify/values.yaml b/charts/dify/values.yaml index 0bef6c4..331ba1e 100644 --- a/charts/dify/values.yaml +++ b/charts/dify/values.yaml @@ -13,6 +13,8 @@ fullnameOverride: "" global: host: "chart-example.local" + # Change this is your ingress is exposed with port other than 443, 80, like 8080 for instance + port: "" enableTLS: false image: tag: ""