-
Notifications
You must be signed in to change notification settings - Fork 1
/
ansible.cfg
23 lines (23 loc) · 984 Bytes
/
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
[ssh_connection]
pipelining=True
ssh_args = -o ControlMaster=auto -o ControlPersist=30m -o ConnectionAttempts=100 -o UserKnownHostsFile=/dev/null
#control_path = ~/.ssh/ansible-%%r@%%h:%%p
[defaults]
strategy_plugins = plugins/mitogen/ansible_mitogen/plugins/strategy
# https://github.com/ansible/ansible/issues/56930 (to ignore group names with - and .)
force_valid_group_names = ignore
inventory = ~/go/bin/terraform-inventory,inventory/inventory.ini
remote_user = ubuntu
host_key_checking=False
gathering = smart
stdout_callback = skippy
library = 3d-party/kubespray/library
callback_whitelist = profile_tasks
roles_path = 3d-party/kubespray/roles:$VIRTUAL_ENV/usr/local/share/kubespray/roles:$VIRTUAL_ENV/usr/local/share/ansible/roles:/usr/share/kubespray/roles
deprecation_warnings=False
inventory_ignore_extensions = ~, .orig, .bak, .ini, .cfg, .retry, .pyc, .pyo, .creds
[inventory]
ignore_patterns = artifacts, credentials
[privilege_escalation]
become=True
become_method=sudo