-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathansible.cfg
46 lines (35 loc) · 1.03 KB
/
ansible.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[defaults]
# General settings
nocows = True
executable = /bin/bash
stdout_callback = yaml
force_valid_group_names = ignore
# File/Directory settings
inventory = ./provision/ansible/kubernetes/inventory/
playbook_dir = ./provision/ansible/kubernetes/playbooks/
remote_tmp = /tmp
local_tmp = ./.ansible/tmp
log_path = ./.ansible/ansible.log
collections_path = ./.ansible/collections
roles_path = ./.ansible/roles:./provision/ansible/roles
# Fact Caching settings
fact_caching_connection = ./.ansible/facts_cache
cache_connection = ./.ansible/ansible_inventory
# Fact Caching settings
fact_caching = jsonfile
# Plugin settings
vars_plugins_enabled = host_group_vars,community.sops.sops
internal_poll_interval = 0.001
# SSH settings
remote_port = 22
timeout = 60
host_key_checking = False
[inventory]
cache = yes
unparsed_is_failed = true
[ssh_connection]
scp_if_ssh = smart
retries = 3
ssh_args = -o ControlMaster=auto -o ControlPersist=30m -o Compression=yes -o ServerAliveInterval=15s
pipelining = True
control_path = %(directory)s/%%h-%%r