File tree Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ type: application
20
20
# This is the chart version. This version number should be incremented each time you make changes
21
21
# to the chart and its templates, including the app version.
22
22
# Versions are expected to follow Semantic Versioning (https://semver.org/)
23
- version : 0.3.4
23
+ version : 0.3.5
24
24
25
25
# This is the version number of the application being deployed. This version number should be
26
26
# incremented each time you make changes to the application. Versions are not expected to
27
27
# follow Semantic Versioning. They should reflect the version the application is using.
28
28
# It is recommended to use it with quotes.
29
- appVersion : " 0.6.3 "
29
+ appVersion : " 0.6.8 "
30
30
31
31
dependencies :
32
32
- name : redis
Original file line number Diff line number Diff line change
1
+ ---
2
+ apiVersion : v1
3
+ kind : ConfigMap
4
+ metadata :
5
+ name : {{ include "dify.fullname" . }}-config
6
+ data :
7
+ python-requirements.txt : |
8
+ {{- range .Values.sandbox.config.python_requirements }}
9
+ {{ . }}
10
+ {{- end }}
Original file line number Diff line number Diff line change @@ -315,6 +315,10 @@ spec:
315
315
value : {{ .Values.sandbox.apiKey | quote }}
316
316
{{- else }}
317
317
{{- end }}
318
+ volumeMounts :
319
+ - name : config-volume
320
+ mountPath : /dependencies/python-requirements.txt
321
+ subPath : python-requirements.txt
318
322
ports :
319
323
- name : http
320
324
containerPort : {{ .Values.sandbox.containerPort }}
@@ -341,3 +345,7 @@ spec:
341
345
tolerations :
342
346
{{- toYaml . | nindent 8 }}
343
347
{{- end }}
348
+ volumes :
349
+ - name : config-volume
350
+ configMap :
351
+ name : dify-config
Original file line number Diff line number Diff line change @@ -292,7 +292,9 @@ sandbox:
292
292
repository : langgenius/dify-sandbox
293
293
pullPolicy : IfNotPresent
294
294
# Overrides the image tag whose default is the chart appVersion.
295
- tag : " "
295
+ tag : " 0.2.0"
296
+ config :
297
+ python_requirements : {}
296
298
297
299
envs :
298
300
- name : GIN_MODE
You can’t perform that action at this time.
0 commit comments