File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11apiVersion : v2
22name : abstract-node
33description : External node for syncing and serving blockchain data for Abstract
4- version : 0.1.22
4+ version : 0.1.23
55type : application
66icon : https://abstract-assets.abs.xyz/icons/light.png
77keywords :
Original file line number Diff line number Diff line change @@ -6,9 +6,25 @@ metadata:
66 labels :
77 {{- include "common.labels.standard" . | nindent 4 }}
88spec :
9- {{- with .Values.affinity }}
9+ {{- with .Values.cnpg.postgresql }}
10+ postgresql :
11+ {{ toYaml . | nindent 8 | trim }}
12+ {{- end }}
13+ {{- with .Values.cnpg.affinity }}
1014 affinity :
1115 {{ toYaml . | nindent 8 | trim }}
16+ {{- end }}
17+ {{- with .Values.cnpg.backup }}
18+ backup :
19+ {{ toYaml . | nindent 8 | trim }}
20+ {{- end }}
21+ {{- with .Values.cnpg.bootstrap }}
22+ bootstrap :
23+ {{ toYaml . | nindent 8 | trim }}
24+ {{- end }}
25+ {{- with .Values.cnpg.externalClusters }}
26+ externalClusters :
27+ {{ toYaml . | nindent 8 | trim }}
1228{{- end }}
1329 instances : {{ .Values.cnpg.instances }}
1430 storage :
Original file line number Diff line number Diff line change @@ -328,3 +328,17 @@ cnpg:
328328 storageClass : " "
329329 storageSize : 250Gi
330330 enablePodMonitor : true
331+ backup : {}
332+ bootstrap : {}
333+ externalClusters : {}
334+ postgresql :
335+ parameters :
336+ shared_buffers : 2GB
337+ min_wal_size : 4GB
338+ max_wal_size : 16GB
339+ max_connections : " 200"
340+ maintenance_work_mem : 1GB
341+ checkpoint_completion_target : " 0.9"
342+ random_page_cost : " 1.1"
343+ effective_io_concurrency : " 200"
344+ max_worker_processes : " 16"
You can’t perform that action at this time.
0 commit comments