Skip to content

Commit da3b431

Browse files
authored
Increase memory allocation for mintmaker controller in production (#3943)
This is same to 0de6242 which was for staging. Signed-off-by: Qixiang Wan <[email protected]>
1 parent 717549a commit da3b431

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

components/mintmaker/production/base/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ patches:
2222
kind: ExternalSecret
2323
group: external-secrets.io
2424
version: v1beta1
25+
- path: manager_resources_patch.yaml
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: controller-manager
5+
namespace: system
6+
spec:
7+
template:
8+
spec:
9+
containers:
10+
- name: manager
11+
resources:
12+
limits:
13+
cpu: 500m
14+
memory: 2048Mi
15+
requests:
16+
cpu: 100m
17+
memory: 256Mi

0 commit comments

Comments
 (0)