Skip to content

Commit fd02846

Browse files
committed
Align default resources with docs recommendations
1 parent 10229fd commit fd02846

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

charts/connector/values.yaml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,22 @@ ports:
2929
replicaCount: 2
3030
resources:
3131
requests:
32-
cpu: 4
33-
memory: 8Gi
32+
cpu: 1
33+
memory: 2Gi
3434
limits:
35-
cpu: 8
36-
memory: 16Gi
35+
cpu: 2
36+
memory: 4Gi
37+
38+
# Log spool volume for buffering logs on disk during disruptions
39+
# Uses an emptyDir (ephemeral, lost on pod restart)
40+
# For persistence across restarts, replace with a PVC
41+
volumes:
42+
- name: log-spool
43+
emptyDir:
44+
sizeLimit: 10Gi
45+
volumeMounts:
46+
- name: log-spool
47+
mountPath: /formal/logs
3748

3849
service:
3950
type: LoadBalancer
@@ -58,8 +69,6 @@ securityContext: {}
5869
podSecurityContext: {}
5970
podAnnotations:
6071
cluster-autoscaler.kubernetes.io/safe-to-evict: "true"
61-
volumes: []
62-
volumeMounts: []
6372
tolerations: []
6473

6574
# RBAC resources give pod and lease permissions to the service account for

0 commit comments

Comments
 (0)