feat: add shared lib path (#400)

* feat: add shared lib path to files

* feat: add sharedlib path for app-service env

---------

Co-authored-by: liuyu <>
Co-authored-by: hys <hysyeah@gmail.com>
This commit is contained in:
eball
2024-08-30 00:14:24 +08:00
committed by GitHub
parent 99b3ce6d12
commit d96322bccc
3 changed files with 18 additions and 1 deletions

View File

@@ -114,6 +114,11 @@ spec:
# mountPath: /data/Home/Documents
- name: upload-appdata
mountPath: /appcache/
{{ if .Values.sharedlib }}
- name: shared-lib
mountPath: /share
{{ end }}
ports:
- containerPort: 8110
env:
@@ -239,6 +244,13 @@ spec:
hostPath:
path: /terminus/userdata/Cache
type: Directory
{{ if .Values.sharedlib }}
- name: shared-lib
hostPath:
path: {{ .Values.sharedlib }}
type: Directory
{{ end }}
---
apiVersion: v1