Add final restart of worker/health daemons

Ensures that schema updates are properly applied.
This commit is contained in:
Joshua Boniface 2023-12-27 13:24:31 -05:00
parent aa6488854a
commit 7c21763994
1 changed files with 9 additions and 0 deletions

View File

@ -126,6 +126,15 @@
become_user: root become_user: root
gather_facts: yes gather_facts: yes
tasks: tasks:
- name: restart PVC supplemental node daemons for schema updates
service:
name: "{{ item }}"
state: restarted
enabled: yes
with_items:
- pvcworkerd
- pvchealthd
- name: unset PVC maintenance mode - name: unset PVC maintenance mode
command: pvc cluster maintenance off command: pvc cluster maintenance off
run_once: yes run_once: yes