Replace Proxmox Node
For first step we need to remove old node:
pvecm delnode pve01
After add new node, we need to update ssh fingerprint. For this we need to execute next commands on each node in cluster:
Remove old fingerprint:
ssh-keygen -f /etc/ssh/ssh_known_hosts -R 192.0.2.11
ssh-keygen -f /etc/ssh/ssh_known_hosts -R pve01
Add new fingerprint:
ssh-keyscan -t ssh-rsa 192.0.2.11 2>/dev/null | tee -a /etc/ssh/ssh_known_hosts
ssh-keyscan -t ssh-rsa 192.0.2.11 2>/dev/null | sed 's/192.0.2.11/pve01/' | tee -a /etc/ssh/ssh_known_hosts