diff --git a/ansible/inventories/_template/group_vars/all.yml.example b/ansible/inventories/_template/group_vars/all.yml.example index 9ccffde..76f37ea 100644 --- a/ansible/inventories/_template/group_vars/all.yml.example +++ b/ansible/inventories/_template/group_vars/all.yml.example @@ -1,10 +1,10 @@ --- # Deployment Toggles +standalone_mode: true # Set to true to bypass all Corosync/Linstor tasks for independent nodes deploy_linstor: false # Set to true to install and configure Linstor/DRBD # Proxmox Cluster Configuration pve_cluster_name: "example-cluster" -pve_enterprise_key: "" # Leave empty to use non-subscription repos # High Availability Controller Configuration ha_pool: "fast_pool_1" @@ -34,4 +34,4 @@ linstor_storage_pools: targets: pve-node-01: "/dev/sda" pve-node-02: "/dev/sda" - pve-node-03: "/dev/sda" \ No newline at end of file + pve-node-03: "/dev/sda" diff --git a/ansible/inventories/_template/hosts.yml.example b/ansible/inventories/_template/hosts.yml.example index 5c98fa8..0414bea 100644 --- a/ansible/inventories/_template/hosts.yml.example +++ b/ansible/inventories/_template/hosts.yml.example @@ -5,9 +5,12 @@ all: pve-node-01: ansible_host: 192.168.1.1 priv_ip: 192.168.2.1 + pve_enterprise_key: "pve1c-111111111111" pve-node-02: - ansible_host: 192.168.1.1 + ansible_host: 192.168.1.2 priv_ip: 192.168.2.1 + pve_enterprise_key: "pve1c-222222222222" pve-node-03: ansible_host: 192.168.1.3 priv_ip: 192.168.2.3 + pve_enterprise_key: "pve1c-333333333333"