From 7c21763994903c8f12c4ccc66e242a83eb573fd2 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 27 Dec 2023 13:24:31 -0500 Subject: [PATCH] Add final restart of worker/health daemons Ensures that schema updates are properly applied. --- oneshot/update-pvc-daemons.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/oneshot/update-pvc-daemons.yml b/oneshot/update-pvc-daemons.yml index 88ddd20..357b604 100644 --- a/oneshot/update-pvc-daemons.yml +++ b/oneshot/update-pvc-daemons.yml @@ -126,6 +126,15 @@ become_user: root gather_facts: yes 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 command: pvc cluster maintenance off run_once: yes