We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0efda27 commit f885514Copy full SHA for f885514
deployment/services/redis.ts
@@ -21,7 +21,7 @@ export function deployRedis(input: { environment: Environment }) {
21
}).deploy({
22
limits: input.environment.isProduction
23
? {
24
- memory: '3Gi',
+ memory: '4Gi',
25
cpu: '1000m',
26
}
27
: {
deployment/utils/redis.ts
@@ -81,7 +81,7 @@ export class Redis {
81
},
82
];
83
84
- const memoryInBytes = memoryParser(input.limits.memory) * 0.8; // Redis recommends 80%
+ const memoryInBytes = memoryParser(input.limits.memory) * 0.9; // Redis recommends 80%
85
const memoryInMegabytes = Math.floor(memoryInBytes / 1024 / 1024);
86
87
const pb = new PodBuilder({
0 commit comments