From be7c46d665053eb739a90077f2879cca170e7cc7 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 29 Mar 2024 13:11:41 -0400 Subject: [PATCH] add 3rd node --- node3.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 node3.yml diff --git a/node3.yml b/node3.yml new file mode 100644 index 0000000..cebc21f --- /dev/null +++ b/node3.yml @@ -0,0 +1,12 @@ +--- +- name: Set stats test - node2 + hosts: all + become: true + gather_facts: false + + tasks: + - name: Debug test_set_stats + ansible.builtin.debug: + msg: "Another node will use __bigboot_size_target -> {{ __bigboot_size_target }}" + +...