28 lines
941 B
YAML
28 lines
941 B
YAML
---
|
|
# Proxmox connection
|
|
# proxmox_api_host / proxmox_api_port are derived from the 'proxmox_api'
|
|
# inventory host (ansible_host / ansible_port). Do not set them here.
|
|
proxmox_node: pve1
|
|
proxmox_api_user: ansible@pam
|
|
proxmox_api_token_id: ansible
|
|
proxmox_api_token_secret: "{{ vault_proxmox_token_secret }}"
|
|
proxmox_validate_certs: false
|
|
|
|
# Storage
|
|
proxmox_storage: local-lvm # VM disk storage pool
|
|
proxmox_iso_storage: local # ISO storage pool name (Proxmox)
|
|
proxmox_iso_dir: /var/lib/vz/template/iso # Filesystem path on proxmox_host
|
|
sno_credentials_dir: "/root/sno-{{ ocp_cluster_name }}" # Persistent credentials on proxmox_host
|
|
|
|
# VM specification
|
|
sno_vm_name: "sno-{{ ocp_cluster_name }}"
|
|
sno_cpu: 8
|
|
sno_memory_mb: 32768
|
|
sno_disk_gb: 120
|
|
sno_bridge: vmbr0
|
|
sno_vlan: 40
|
|
sno_mac: "" # Leave empty for auto-assignment. Set explicitly to pin MAC for static IP.
|
|
|
|
# VM ID - leave 0 for auto-assign by Proxmox
|
|
sno_vm_id: 0
|