14 lines
552 B
YAML
14 lines
552 B
YAML
---
|
|
# Configures the Proxmox node itself — as distinct from the guests on it,
|
|
# which playbooks/proxmox.yml handles. Right now that means backups: the NAS
|
|
# storage archives are written to, and the vzdump schedule that fills it.
|
|
#
|
|
# Targets the static `proxmox_nodes` group in inventory/hosts.yml rather than
|
|
# the API-backed dynamic inventory, which enumerates guests. If no node is
|
|
# defined there yet, this play matches nothing and is skipped.
|
|
- name: Configure Proxmox nodes
|
|
hosts: proxmox_nodes
|
|
gather_facts: true
|
|
|
|
roles:
|
|
- pve_backup
|