From 68bcc10427c54fd07bdec8679d73bd956291cc34 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Fri, 19 Jan 2024 04:07:23 +0100 Subject: [PATCH] feat(kube-system): Add readiness probe to quorum This patch adds a readinessProbe to the quorum pods, this causes the kubelet to test the etcd health endpoint, resulting in proper status of the etcd node, and therefore keeping the quorum. This should help to improve cluster stablility. --- infrastructure/kube-system/quorum.yaml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/infrastructure/kube-system/quorum.yaml b/infrastructure/kube-system/quorum.yaml index 1d368cc4e..70ebfd4ef 100644 --- a/infrastructure/kube-system/quorum.yaml +++ b/infrastructure/kube-system/quorum.yaml @@ -38,6 +38,19 @@ spec: - key: node-role.kubernetes.io/master operator: Exists effect: NoSchedule + hostnetwork: true containers: - name: pause - image: registry.k8s.io/pause + image: registry.k8s.io/pause:3.6 + readinessProbe: + failureThreshold: 3 + httpGet: + host: 127.0.0.1 + path: /health?serializable=true + port: 2381 + scheme: HTTP + initialDelaySeconds: 10 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 15 + -- GitLab