mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
* add helm chart * fix: remove unnecessary documents |
2 years ago | |
---|---|---|
.. | ||
templates | 2 years ago | |
.helmignore | 2 years ago | |
Chart.yaml | 2 years ago | |
README-zh.md | 2 years ago | |
README.md | 2 years ago | |
values.yaml | 2 years ago |
README.md
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