mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 09:02:49 +03:00
012a5f4907
* add helm chart * fix: remove unnecessary documents |
||
---|---|---|
.. | ||
templates | ||
.helmignore | ||
Chart.yaml | ||
README-zh.md | ||
README.md | ||
values.yaml |
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 changeexistPersistClaim
to your pvc
name
2、If enabled
is true
but existPersistClaim
is empty,if will create a new pvc
by accessMode
storageClass
size