memos/deploy/helm/README.md
OKIAAAAA 012a5f4907
feat: add helm chart (#2095)
* add helm chart

* fix: remove unnecessary documents
2023-08-12 21:33:13 +08:00

705 B

Install Steps

example

helm install memos .

use custom namespace example

helm install memos -n app .

Persistence

Edit values.yaml

persistence:
  ## If enabled is False, emptyDir will be used, data may be lost after Pod rebuild, it is recommended to use persistent volume
  enabled: false
  storageClass: "local"
  existPersistClaim: ""
  accessMode: ReadWriteOnce
  size: 10Gi

when enabled is false use emptyDir, 1、If has created pvc, Please change enabled to true, and changeexistPersistClaimto your pvc name 2、If enabled is true but existPersistClaim is empty,if will create a new pvc by accessMode storageClass size