From 17bd5d43d5c730d3087bf738c1592fb22853ba65 Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Thu, 14 Nov 2024 23:10:54 +0100 Subject: [PATCH] feat(kured): add toleration to node-role.kubernetes.io taint --- apps/system/kured.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/system/kured.yaml b/apps/system/kured.yaml index 0a4e2f0..9bf28d8 100644 --- a/apps/system/kured.yaml +++ b/apps/system/kured.yaml @@ -29,3 +29,8 @@ spec: endTime: "06:00" # 6:00 AM annotateNodes: true # rebootDays: ["mo", "tu", "we", "th", "fr", "sa", "su"] + tolerations: + # allow kured to run on control-plane nodes + - key: "node-role.kubernetes.io" + operator: "Exists" + effect: "NoSchedule"