Files
runpod/ansible.cfg

34 lines
599 B
INI
Raw Normal View History

[defaults]
# Ansible configuration for RunPod deployment
# Inventory
inventory = inventory.yml
# Disable host key checking (RunPod instances may change)
host_key_checking = False
# Display settings
stdout_callback = yaml
bin_ansible_callbacks = True
# Performance
forks = 5
gathering = smart
fact_caching = jsonfile
fact_caching_connection = /tmp/ansible_facts
fact_caching_timeout = 86400
# Logging
log_path = /tmp/ansible-runpod.log
# Privilege escalation
become_method = sudo
become_ask_pass = False
# SSH settings
timeout = 30
transport = local
# Retry files
retry_files_enabled = False