From ee7675543a9ba341262cf0317eaa604f9909c38b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 26 Jun 2023 12:54:54 +0200 Subject: [PATCH] nimbus-geth-goerli: fix paths for extra data volume MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise `/docker` is part of root and there's not enough space. Signed-off-by: Jakub SokoĊ‚owski --- ansible/group_vars/nimbus-geth-goerli.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ansible/group_vars/nimbus-geth-goerli.yml b/ansible/group_vars/nimbus-geth-goerli.yml index ab8830f..7a4aea6 100644 --- a/ansible/group_vars/nimbus-geth-goerli.yml +++ b/ansible/group_vars/nimbus-geth-goerli.yml @@ -1,4 +1,8 @@ --- +# Volumes +bootstrap__extra_volume_bind_paths: + DATA_VOLUME1: ['/data', '/docker'] + # Geth node geth_service_name: 'geth-goerli-{{ "%02d"|format(idx|int+1) }}' geth_service_path: '/docker/{{ geth_service_name }}'