nimbus.ropsten: lower geth memory limits

It seems to be hogging far too much memory.

https://github.com/status-im/infra-nimbus/issues/122

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-09-23 16:20:29 +02:00
parent 7b7c61e5ee
commit 23c07e3dbf
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931

View File

@ -17,8 +17,8 @@ geth_authrpc_jwtsecret: '{{lookup("bitwarden", "nimbus/jwt-token")}}'
# Allow connections from our VPN
geth_websocket_origins: '*'
# Memory settings¬
geth_cont_mem_ratio: 0.3
geth_cache_size: '{{ (ansible_memtotal_mb * 0.25|float) | int }}'
geth_cont_mem_ratio: 0.15
geth_cache_size: '{{ (ansible_memtotal_mb * 0.1|float) | int }}'
# Geth metrics¬
geth_expo_service_name: '{{ geth_service_name }}'