-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.md.gotmpl
62 lines (42 loc) · 1.25 KB
/
README.md.gotmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{{ template "chart.header" . }}
{{ template "chart.deprecationWarning" . }}
{{ template "chart.badgesSection" . }}
{{ template "chart.description" . }}
KeyDB is a high-performance, distributed NoSQL database that is designed to be compatible with the Redis protocol. In many ways, KeyDB can be considered a drop-in replacement for Redis, as it supports the same data structures and commands.
* TLS connections
* HaProxy load balances
* Master-master replication
* Support backup/restore to the extrernal storage, using [wal-g](https://github.com/wal-g)
{{ template "chart.homepageLine" . }}
{{ template "chart.maintainersSection" . }}
{{ template "chart.sourcesSection" . }}
{{ template "chart.requirementsSection" . }}
```yaml
# helm values
replicaCount: 2
updateStrategy:
type: OnDelete
tlsCerts:
create: true
loadbalancer:
enabled: true
extraVolumes:
- name: certs
secret:
defaultMode: 256
secretName: backup-s3
extraVolumeMounts:
- name: certs
mountPath: /home/redis/.aws
readOnly: true
backup:
enabled: true
recovery: true
walg:
WALG_TAR_DISABLE_FSYNC: true
WALG_COMPRESSION_METHOD: brotli
WALG_S3_PREFIX: s3://backup/redis-backup
metrics:
enabled: true
```
{{ template "chart.valuesSection" . }}