An open API service indexing awesome lists of open source software.

https://github.com/duhow/proxmox-setup

Bootstraping new Proxmox nodes with Ansible
https://github.com/duhow/proxmox-setup

ansible-playbook bootstrap proxmox server

Last synced: 4 months ago
JSON representation

Bootstraping new Proxmox nodes with Ansible

Awesome Lists containing this project

README

          

# Proxmox setup

Scripted setup to configure a new Proxmox node.

Used in Intel NUC.

## Usage

In your control node (not Proxmox), install Ansible.

```shell
sudo apt install -y sshpass
python3 -m pip install --user --break-system-packages ansible
```

Copy the file `hosts.template` to `hosts` and update the host list.

Verify you can reach all the hosts.

```shell
ansible all -m ping -i hosts
```

Finally, execute the bootstrapping process.

```shell
ansible-playbook -i hosts bootstrap.yaml
```