feat: add proxmox config

This commit is contained in:
Simon Cornet 2025-12-02 21:41:34 +01:00
commit a19254a226
2 changed files with 29 additions and 0 deletions

View file

@ -1,5 +1,18 @@
---
# configure proxmox - all nodes
- name: "configure proxmox - all nodes"
hosts: "proxmox"
become: true
serial: 1
tasks:
# configure proxmox cluster
- name: "configure proxmox cluster nodes"
tags: "configure-cluster"
ansible.builtin.import_tasks: "tasks/proxmox/config.yaml"
# update proxmox - first node
- name: "update proxmox - first node"
hosts: "{{ groups['proxmox'] | first }}"