Skip to content

Commit 4753cf3

Browse files
authored
Merge pull request #44 from bitovi/enh/ansible-connection
Speed-up the Ansible deployment step by fine-tuning ansible.cfg
2 parents 6d3705d + d64d53a commit 4753cf3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

operations/deployment/ansible/ansible.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ host_key_checking = False
66
transport = ssh
77

88
[ssh_connection]
9-
ssh_args = -o ForwardAgent=yes
9+
# speed-up the connection by using pipelining, ControlPersist and ControlMaster
10+
pipelining = True
11+
ssh_args = -o ForwardAgent=yes -o ControlMaster=auto -o ControlPersist=600s

0 commit comments

Comments
 (0)