refactor: Disable redis persistence and add common configuration in values.yaml

This commit is contained in:
Simon Larsen
2024-05-06 13:49:08 +01:00
parent 5cd213a750
commit 68dbb010aa
2 changed files with 13 additions and 1 deletions

10
HelmChart/Docs/Redis.md Normal file
View File

@@ -0,0 +1,10 @@
### Redis Ops
Get Redis Password
```bash
kubectl get secret/oneuptime-redis -o go-template='{{(index .data "redis-password") | base64decode}}'
```
Please ignore % in the end of the password output.

View File

@@ -78,7 +78,9 @@ redis:
enabled: false # We dont need redis persistence, because we dont do anything with it.
replica:
persistence:
enabled: false # We dont need redis persistence, because we dont do anything with it.
enabled: false # We dont need redis persistence, because we dont do anything with it.
commonConfiguration: |-
appendonly no
image: