Skip to content

Commit f56539e

Browse files
Actually add back some resource limits for operator
JSON is hard... Fixes DACH-NY/cn-test-failures#4535 (again) [static] Signed-off-by: Martin Florian <martin.florian@digitalasset.com>
1 parent 82c3c88 commit f56539e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cluster/pulumi/operator/src/operator.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ export const operator = new k8s.helm.v3.Release(
2727
version: '2.1.0',
2828
namespace: namespace.ns.metadata.name,
2929
values: {
30-
limits: {
31-
cpu: 1,
32-
memory: config.optionalEnv('OPERATOR_MEMORY_LIMIT') || '2G',
33-
},
3430
resources: {
31+
limits: {
32+
cpu: 1,
33+
memory: config.optionalEnv('OPERATOR_MEMORY_LIMIT') || '2G',
34+
},
3535
requests: {
3636
cpu: 0.2,
3737
memory: config.optionalEnv('OPERATOR_MEMORY_REQUESTS') || '1G',

0 commit comments

Comments
 (0)