From d4ff2cc21f3c7038d178a2117262550a8abc75e6 Mon Sep 17 00:00:00 2001 From: Rohit Chaudhari <100275369+rohitkbc@users.noreply.github.com> Date: Thu, 12 Feb 2026 22:09:16 +0530 Subject: [PATCH 1/2] Update manager.yaml to modify nodeSelector and tolerations Removed nodeSelector for control-plane and updated tolerations. --- config/manager/manager.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/manager/manager.yaml b/config/manager/manager.yaml index 3fa4932..45e1589 100644 --- a/config/manager/manager.yaml +++ b/config/manager/manager.yaml @@ -56,11 +56,11 @@ spec: # values: # - platform # Modify this value based on your platform node labels. priorityClassName: system-cluster-critical - nodeSelector: - "node-role.kubernetes.io/control-plane": "" tolerations: - - key: "node-role.kubernetes.io/control-plane" - operator: "Exists" + - operator: Exists + effect: NoSchedule + - operator: Exists + effect: NoExecute securityContext: # Projects are configured by default to adhere to the "restricted" Pod Security Standards. # This ensures that deployments meet the highest security requirements for Kubernetes. From 644d4c8c227cce7c809b47b69822311615c4f50c Mon Sep 17 00:00:00 2001 From: "ajaysundar.k" Date: Wed, 11 Mar 2026 14:58:34 -0700 Subject: [PATCH 2/2] Update config/manager/manager.yaml add documentation comment on wildcard support Co-authored-by: Priyanka Saggu --- config/manager/manager.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/manager/manager.yaml b/config/manager/manager.yaml index 45e1589..fa2aa99 100644 --- a/config/manager/manager.yaml +++ b/config/manager/manager.yaml @@ -56,6 +56,8 @@ spec: # values: # - platform # Modify this value based on your platform node labels. priorityClassName: system-cluster-critical + # TODO: In the future, this could be replaced with tolerate only readiness.k8s.io/* taints specifically, when wildcard support is available in K8s. + # (ref: https://github.com/kubernetes/enhancements/issues/5500) tolerations: - operator: Exists effect: NoSchedule