diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-03-03 21:20:59 +0100 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-03-03 21:20:59 +0100 |
commit | 0182fe51736e7610d4a63fe6767d08ffe5c5938c (patch) | |
tree | 0025603ddfb75ae556d1f949be4c7882ea972ee9 /ansible/ansible.cfg | |
parent | f8f9666a8e630d6d64a883bca25ccc4ba98d73e4 (diff) |
ansible: add dynamic inventory & playbooks to install k3s hosts
bootstrap.yml will now be used to install any configuration on new
provisionned servers, based on tags given by the dynamic inventory
Diffstat (limited to 'ansible/ansible.cfg')
-rw-r--r-- | ansible/ansible.cfg | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg index 5a7e920..4419295 100644 --- a/ansible/ansible.cfg +++ b/ansible/ansible.cfg @@ -1,3 +1,8 @@ [defaults] -roles_path = ./roles/:./kubespray/roles/ -library = ./library/:./kubespray/library/ +roles_path = ./roles/ +library = ./library/ +forks = 5 +host_key_checking = False +retry_files_enabled = False +inventory = ./inventory.proxmox.yaml +vault_password_file = ./.vault_password |