From cfd9400edfd49787c0827f8ddc58cb78235d9e86 Mon Sep 17 00:00:00 2001 From: davidg <52075587+sm-gravid-day@users.noreply.github.com> Date: Fri, 26 Jan 2024 20:08:18 +0000 Subject: [PATCH] Containerd registries config not live (#222) I found a bug where my custom containerd registries config wasn't live, despite the correct `notify` handlers being specified in the 'Ensure containerd registries file exists' task. This change fixes that by ensuring the handlers get triggered. --- tasks/state_installed.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks/state_installed.yml b/tasks/state_installed.yml index 4a352ec..a90f82e 100644 --- a/tasks/state_installed.yml +++ b/tasks/state_installed.yml @@ -44,3 +44,6 @@ - k3s_build_cluster is defined - k3s_build_cluster - k3s_registration_address is defined + +- name: Flush Handlers + ansible.builtin.meta: flush_handlers