File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed
Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,22 @@ ports:
2929replicaCount : 2
3030resources :
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
3849service :
3950 type : LoadBalancer
@@ -58,8 +69,6 @@ securityContext: {}
5869podSecurityContext : {}
5970podAnnotations :
6071 cluster-autoscaler.kubernetes.io/safe-to-evict : " true"
61- volumes : []
62- volumeMounts : []
6372tolerations : []
6473
6574# RBAC resources give pod and lease permissions to the service account for
You can’t perform that action at this time.
0 commit comments