Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue with redis subpath needing to be relative #376

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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