Skip to content

Commit

Permalink
feat(ansible): proxmox external voter playbook
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrennand committed Jan 4, 2024
1 parent 87f0ba1 commit d942d61
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions ansible/playbooks/proxmox-external-vote.yml
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>

0 comments on commit d942d61

Please sign in to comment.