-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
argocd: add redis-2 on staging (#1864)
- Loading branch information
1 parent
4066018
commit ea7c027
Showing
4 changed files
with
163 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
architecture: replication | ||
auth: | ||
enabled: true | ||
existingSecret: redis-password | ||
existingSecretPasswordKey: password | ||
commonConfiguration: | | ||
# Enable AOF https://redis.io/topics/persistence#append-only-file | ||
appendonly yes | ||
# Disable RDB persistence, AOF persistence already enabled. | ||
save "" | ||
# Control memory usage | ||
maxmemory 50mb | ||
maxmemory-policy volatile-lru | ||
# Auto AOF file rewriting | ||
auto-aof-rewrite-percentage 100 | ||
auto-aof-rewrite-min-size 60mb | ||
master: | ||
livenessProbe: | ||
enabled: false | ||
persistence: | ||
accessModes: | ||
- ReadWriteOnce | ||
enabled: true | ||
path: /data | ||
size: 1Gi | ||
storageClass: null | ||
subPath: "" | ||
readinessProbe: | ||
enabled: false | ||
resources: | ||
limits: | ||
cpu: 50m | ||
memory: 90Mi | ||
requests: | ||
cpu: 10m | ||
memory: 62Mi | ||
redisPort: 6379 | ||
replica: | ||
livenessProbe: | ||
enabled: false | ||
persistence: | ||
accessModes: | ||
- ReadWriteOnce | ||
enabled: true | ||
path: /data | ||
size: 1Gi | ||
storageClass: null | ||
subPath: "" | ||
readinessProbe: | ||
enabled: false | ||
replicaCount: 1 | ||
resources: | ||
limits: | ||
cpu: 50m | ||
memory: 90Mi | ||
requests: | ||
cpu: 10m | ||
memory: 60Mi | ||
sentinel: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
architecture: replication | ||
auth: | ||
enabled: true | ||
existingSecret: redis-password | ||
existingSecretPasswordKey: password | ||
commonConfiguration: | | ||
# Enable AOF https://redis.io/topics/persistence#append-only-file | ||
appendonly yes | ||
# Disable RDB persistence, AOF persistence already enabled. | ||
save "" | ||
# Control memory usage | ||
maxmemory 75mb | ||
maxmemory-policy volatile-lru | ||
# Auto AOF file rewriting | ||
auto-aof-rewrite-percentage 100 | ||
auto-aof-rewrite-min-size 85mb | ||
master: | ||
persistence: | ||
accessModes: | ||
- ReadWriteOnce | ||
enabled: true | ||
path: /data | ||
size: 1Gi | ||
storageClass: premium-rwo | ||
subPath: "" | ||
resources: | ||
limits: | ||
cpu: 500m | ||
memory: 500Mi | ||
requests: | ||
cpu: 500m | ||
memory: 500Mi | ||
redisPort: 6379 | ||
replica: | ||
persistence: | ||
accessModes: | ||
- ReadWriteOnce | ||
enabled: true | ||
path: /data | ||
size: 1Gi | ||
storageClass: premium-rwo | ||
subPath: "" | ||
replicaCount: 1 | ||
resources: | ||
limits: | ||
memory: 250Mi | ||
requests: | ||
cpu: 500m | ||
memory: 250Mi | ||
sentinel: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
architecture: replication | ||
auth: | ||
enabled: true | ||
existingSecret: redis-password | ||
existingSecretPasswordKey: password | ||
commonConfiguration: | | ||
# Enable AOF https://redis.io/topics/persistence#append-only-file | ||
appendonly yes | ||
# Disable RDB persistence, AOF persistence already enabled. | ||
save "" | ||
# Control memory usage | ||
maxmemory 75mb | ||
maxmemory-policy volatile-lru | ||
# Auto AOF file rewriting | ||
auto-aof-rewrite-percentage 100 | ||
auto-aof-rewrite-min-size 85mb | ||
master: | ||
persistence: | ||
accessModes: | ||
- ReadWriteOnce | ||
enabled: true | ||
path: /data | ||
size: 1Gi | ||
storageClass: premium-rwo | ||
subPath: "" | ||
resources: | ||
limits: | ||
cpu: 500m | ||
memory: 500Mi | ||
requests: | ||
cpu: 500m | ||
memory: 500Mi | ||
redisPort: 6379 | ||
replica: | ||
persistence: | ||
accessModes: | ||
- ReadWriteOnce | ||
enabled: true | ||
path: /data | ||
size: 1Gi | ||
storageClass: premium-rwo | ||
subPath: "" | ||
replicaCount: 1 | ||
resources: | ||
limits: | ||
memory: 250Mi | ||
requests: | ||
cpu: 500m | ||
memory: 250Mi | ||
sentinel: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters