Skip to content

Commit

Permalink
fix: Fix issue with redis subpath needing to be relative (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikabytes authored Dec 22, 2024
1 parent 5d43510 commit 0fd99a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mailu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ Check that the deployed pods are all running.
| `redis.master.persistence.accessModes` | Pod pvc access modes | `["ReadWriteOnce"]` |
| `redis.master.persistence.annotations` | Pod pvc annotations | `{}` |
| `redis.master.persistence.existingClaim` | Pod pvc existing claim; necessary if using single_pvc | `""` |
| `redis.master.persistence.subPath` | Subpath in PVC; necessary if using single_pvc (set it to `/redis`) | `""` |
| `redis.master.persistence.subPath` | Subpath in PVC; necessary if using single_pvc (set it to `redis`) | `""` |
| `redis.replica.count` | Number of redis replicas (only if `redis.architecture=replication`) | `0` |

### Postfix parameters
Expand Down
2 changes: 1 addition & 1 deletion mailu/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ redis:
## @param redis.master.persistence.accessModes Pod pvc access modes
## @param redis.master.persistence.annotations Pod pvc annotations
## @param redis.master.persistence.existingClaim Pod pvc existing claim; necessary if using single_pvc
## @param redis.master.persistence.subPath Subpath in PVC; necessary if using single_pvc (set it to `/redis`)
## @param redis.master.persistence.subPath Subpath in PVC; necessary if using single_pvc (set it to `redis`)
persistence:
enabled: true
size: 8Gi
Expand Down

0 comments on commit 0fd99a6

Please sign in to comment.