-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ansible): proxmox external voter playbook
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
# https://pve.proxmox.com/wiki/Cluster_Manager#_corosync_external_vote_support | ||
- name: Proxmox Nodes - Cluster External Vote Support | ||
hosts: proxmox | ||
become: true | ||
tasks: | ||
- name: Install corosync-qdevice | ||
ansible.builtin.apt: | ||
name: | ||
- corosync-qdevice | ||
state: present | ||
|
||
- name: Raspberry Pi - Cluster External Vote Support | ||
hosts: pihole.net.dbren.uk | ||
become: true | ||
tasks: | ||
- name: Install corosync-qnetd | ||
ansible.builtin.apt: | ||
name: | ||
- corosync-qnetd | ||
state: present | ||
|
||
- name: Next steps | ||
ansible.builtin.debug: | ||
msg: | | ||
Run the following command on the Proxmox primary node: | ||
pvecm qdevice setup <QDEVICE-IP> |