updating for packer

This commit is contained in:
2025-07-06 22:14:11 -05:00
parent 631aa6f626
commit baa3bc6562
26 changed files with 1137 additions and 153 deletions

View File

@@ -1,3 +1,18 @@
# infra-config
## Create a virtual environment for ansible-core, activate it upgrade pip
### Linux
```bash
python3 -m venv ~/venv-ansible
source ~/venv-ansible/bin/activate
pip3 install --upgrade pip
```
## Install ansible-core, proxmoxer and requests (needed by community.general.proxmox_*)
```bash
pip3 install ansible-core proxmoxer requests
ansible-galaxy collection install community.proxmox
```