From a3bf02f069ad252728fcd588dc879adbc1e7e7f5 Mon Sep 17 00:00:00 2001 From: "Jon S. Stumpf" Date: Wed, 25 Feb 2026 19:37:20 -0500 Subject: [PATCH] fix: skip redundant fact gathering in server and agent plays Signed-off-by: Jon S. Stumpf --- playbooks/site.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playbooks/site.yml b/playbooks/site.yml index 71fcad8..d2e0981 100644 --- a/playbooks/site.yml +++ b/playbooks/site.yml @@ -10,12 +10,14 @@ - name: Setup K3S server hosts: server + gather_facts: false become: true roles: - role: k3s_server - name: Setup K3S agent hosts: agent + gather_facts: false become: true roles: - role: k3s_agent