Skip to content

Commit 9b3e422

Browse files
added limit
1 parent 71492b4 commit 9b3e422

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

examples/complete/aws/helm/values.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ master:
44
requiredDuringSchedulingIgnoredDuringExecution:
55
nodeSelectorTerms:
66
- matchExpressions:
7-
- key: "Infra-Services"
7+
- key: "Addons-Services"
88
operator: In
99
values:
1010
- "true"
@@ -15,10 +15,15 @@ replica:
1515
requiredDuringSchedulingIgnoredDuringExecution:
1616
nodeSelectorTerms:
1717
- matchExpressions:
18-
- key: "Infra-Services"
18+
- key: "Addons-Services"
1919
operator: In
2020
values:
2121
- "true"
2222

23-
redis:
24-
maxclients: 2000
23+
24+
commonConfiguration: |-
25+
# Enable AOF https://redis.io/topics/persistence#append-only-file
26+
appendonly yes
27+
maxclients 2000
28+
# Disable RDB persistence, AOF persistence already enabled.
29+
save ""

helm/values/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ auth:
135135
commonConfiguration: |-
136136
# Enable AOF https://redis.io/topics/persistence#append-only-file
137137
appendonly yes
138+
maxclients 2000
138139
# Disable RDB persistence, AOF persistence already enabled.
139140
save ""
140141
## @param existingConfigmap The name of an existing ConfigMap with your custom configuration for Redis® nodes
@@ -1633,4 +1634,4 @@ useExternalDNS:
16331634
enabled: false
16341635
suffix: ""
16351636
annotationKey: external-dns.alpha.kubernetes.io/
1636-
additionalAnnotations: {}
1637+
additionalAnnotations: {}

0 commit comments

Comments
 (0)