Files
vagrant-k8s-vanilla/ansible.cfg
2025-08-12 23:31:49 +02:00

20 lines
501 B
INI

[defaults]
# Use the inventory file in the current directory
inventory = inventory.ini
# The user to connect to the remote hosts with
remote_user = kube
# The private key to use for SSH authentication
private_key_file = ~/.ssh/id_ed25519
# Disable host key checking for simplicity with new Vagrant VMs
host_key_checking = False
[privilege_escalation]
# Use sudo for privilege escalation (e.g., for installing packages)
become = true
become_method = sudo
become_user = root
become_ask_pass = false