From 491378365e48a666f3d092fcdc0990bce8581e1a Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Fri, 6 Sep 2024 10:51:56 -0700 Subject: [PATCH] Enable pipelining optimization in ansible.cfg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit My understanding is, this is off by default for higher compatibility rates… but in our case, it sped up this playbook from 3min to 1min. Neat! --- ansible.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ansible.cfg b/ansible.cfg index 2271ddb..bb89449 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -3,3 +3,6 @@ inventory = inventory.cfg [privilege_escalation] become_ask_pass = True + +[ssh_connection] +pipelining = True