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] 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.