Skip to content

Commit

Permalink
1. Upgrade dify version to 0.6.8
Browse files Browse the repository at this point in the history
2. Change default tag for sandbox to 0.2.0, latest does not point to the newest version
3. Use configmap to mount sandbox's python-requirements.txt
4. Update chart version to 0.3.5
  • Loading branch information
majian159 committed May 14, 2024
1 parent bffc88b commit e3480ba
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/dify/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4
version: 0.3.5

# 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.3"
appVersion: "0.6.8"

dependencies:
- name: redis
Expand Down
10 changes: 10 additions & 0 deletions charts/dify/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "dify.fullname" . }}-sandbox-config
data:
python-requirements.txt: |
{{- range .Values.sandbox.config.python_requirements }}
{{ . }}
{{- end }}
7 changes: 7 additions & 0 deletions charts/dify/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,9 @@ spec:
value: {{ .Values.sandbox.apiKey | quote }}
{{- else }}
{{- end }}
volumeMounts:
- name: config-volume
mountPath: /dependencies
ports:
- name: http
containerPort: {{ .Values.sandbox.containerPort }}
Expand All @@ -341,3 +344,7 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
- name: config-volume
configMap:
name: {{ include "dify.fullname" . }}-sandbox-config
4 changes: 3 additions & 1 deletion charts/dify/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,9 @@ sandbox:
repository: langgenius/dify-sandbox
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
tag: "0.2.0"
config:
python_requirements: {}

envs:
- name: GIN_MODE
Expand Down

0 comments on commit e3480ba

Please sign in to comment.