From 352c55ff7357a1e3a4f60b918dbad2b37a41e5e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 29 Feb 2024 13:35:47 +0100 Subject: [PATCH] boot,store,db: add serial setting for playbook MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ansible/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ansible/main.yml b/ansible/main.yml index 7fdf2cc..0ae3c05 100644 --- a/ansible/main.yml +++ b/ansible/main.yml @@ -10,6 +10,7 @@ changed_when: false - name: Configure Waku Bootstrap and Storage Nodes + serial: '{{ serial|default(1) }}' hosts: - boot - store @@ -20,6 +21,7 @@ - { role: nim-waku, tags: nim-waku } - name: Configure Waku Storage DB Nodes + serial: '{{ serial|default(1) }}' hosts: store-db roles: - { role: open-ports, tags: open-ports }