Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

Commit

Permalink
keydb 0.7.0:
Browse files Browse the repository at this point in the history
* Make replica-serve-stale-data configurable
  • Loading branch information
Antiarchitect committed Mar 22, 2020
1 parent 33888df commit 850a026
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion keydb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: keydb
description: A Helm chart for KeyDB multimaster setup
type: application
version: 0.6.2
version: 0.7.0
keywords:
- keydb
- redis
Expand Down
1 change: 1 addition & 0 deletions keydb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ The following table lists the configurable parameters of the KeyDB chart and the
| `persistentVolume.accessModes` | Volume access modes | `[ReadWriteOnce]` |
| `persistentVolume.size` | Size of the volume | `1Gi` |
| `persistentVolume.storageClass` | StorageClassName for volume | `"-"` |
| `replicaServeStaleData` | KeyDB replica-serve-stale-data setting | `"yes"` |
| `resources` | K8s Resources for KeyDB containers | `{}` |
| `securityContext` | K8s SecurityContext for KeyDB pods | `{}` |
1 change: 1 addition & 0 deletions keydb/templates/cm-utils.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ data:
--bind 0.0.0.0 \
--port "$port" \
--protected-mode no \
--replica-serve-stale-data {{ .Values.replicaServeStaleData }} \
--server-threads {{ .Values.threads | int }} \
{{- if .Values.password }}
--masterauth {{ .Values.password }} \
Expand Down
1 change: 1 addition & 0 deletions keydb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ port: 6379
threads: 2

appendonly: "no"
replicaServeStaleData: "yes"

persistentVolume:
enabled: true
Expand Down

0 comments on commit 850a026

Please sign in to comment.