infra-role-geth/tasks/checks.yml
Jakub Sokołowski c981226058
fix naming of memory limit variables to use geth_ prefix
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2020-03-16 18:30:02 +01:00

9 lines
346 B
YAML

---
- name: Verify memory and cache sizes
assert:
that:
- geth_cont_mem_limit|int > geth_cache_size|int
fail_msg: 'Memory limit cant be lower than cache: {{ geth_cont_mem_limit }} > {{ geth_cache_size }}'
success_msg: 'Memory limit is higher than cache size: {{ geth_cont_mem_limit }} > {{ geth_cache_size }}'
quiet: true