Moved configs to clients directory, updated onboarding script to reflect changes.

This commit is contained in:
Ben D.
2026-04-24 09:21:04 -07:00
parent a2438ed748
commit 50616c52cc
11 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,48 @@
---
# =============================================================================
# hypervisor_hosts.yml — Local Eng Physical Hypervisor Nodes
# =============================================================================
all:
vars:
client_id: "LE-001"
client_name: "Local Eng"
billing_model: "hybrid"
ansible_user: root
ansible_private_key_file: ~/.ssh/client_local_eng
children:
proxmox_cluster:
vars:
hypervisor_type: proxmox
api_host: 192.168.22.65
api_port: 8006
api_user: "ansible@pve"
api_token_id: "ansible-token"
api_token_secret: "19d33790-7648-4550-a052-f89b1b5e70eb"
cluster_mode: cluster
ceph_enabled: false
shared_storage: true
live_migrate_fallback: shutdown
upgrade_order:
- pm-node-01
- pm-node-02
- pm-node-03
migrate_exclude_tags:
- nomigrate
- pinned
ansible_user: root
ansible_become: false
pve_config_backup_destinations:
- type: local
path: /var/backups/pve-config
keep: 10
hosts:
pm-node-01:
ansible_host: 192.168.22.65
pm-node-02:
ansible_host: 192.168.22.66
pm-node-03:
ansible_host: 192.168.22.67