diff --git a/infrastructure/kube-system/quorum.yaml b/infrastructure/kube-system/quorum.yaml
index 300c00c85bf0692a8e9ec521766a3216da8492c0..0a45be79825854168bb625d3fefcba53748d4b6d 100644
--- a/infrastructure/kube-system/quorum.yaml
+++ b/infrastructure/kube-system/quorum.yaml
@@ -56,7 +56,7 @@ spec:
               scheme: HTTP
             initialDelaySeconds: 10
             periodSeconds: 10
-            successThreshold: 1
+            successThreshold: 2
             timeoutSeconds: 15
         - name: apiserver
           image: registry.k8s.io/pause:3.6
@@ -67,7 +67,36 @@ spec:
               path: /readyz
               port: 6443
               scheme: HTTPS
-            periodSeconds: 1
-            successThreshold: 1
+            initialDelaySeconds: 10
+            periodSeconds: 10
+            successThreshold: 2
+            timeoutSeconds: 15
+        - name: controller-manager
+          image: registry.k8s.io/pause:3.6
+          readinessProbe:
+            failureThreshold: 3
+            httpGet:
+              host: 127.0.0.1
+              path: /healthz
+              port: 10257
+              scheme: HTTPS
+            initialDelaySeconds: 10
+            periodSeconds: 10
+            successThreshold: 2
             timeoutSeconds: 15
+        - name: scheduler
+          image: registry.k8s.io/pause:3.6
+          readinessProbe:
+            failureThreshold: 3
+            httpGet:
+              host: 127.0.0.1
+              path: /healthz
+              port: 10259
+              scheme: HTTPS
+            initialDelaySeconds: 10
+            periodSeconds: 10
+            successThreshold: 2
+            timeoutSeconds: 15
+
+