b3540ccfdf
Change the tillerLivenessProbeTemplate to test the connectivity to the postgres backend. We will override the periodSeconds and failureThreshold when installing the helm chart to trigger a restart of the tiller pod over a swact when the postgres DB/server moves from one controller to the other. This will help guarantee that the tiller connection is always re-established if the connectivity to the postgres backend fails. Change-Id: I7fbed33a8c821f6c9254f58d5953e2115cf4141a Related-Bug: #1917308 Signed-off-by: Robert Church <robert.church@windriver.com>
46 lines
1.4 KiB
Diff
46 lines
1.4 KiB
Diff
From be3167e5342f2730ef43012d8fe4f3782c6ef468 Mon Sep 17 00:00:00 2001
|
|
From: Robert Church <robert.church@windriver.com>
|
|
Date: Wed, 12 May 2021 02:38:52 -0400
|
|
Subject: [PATCH 3/3] Update the liveness probe to verify postgres connectivity
|
|
|
|
Change the tillerLivenessProbeTemplate to test the connectivity to the
|
|
postgres backend. We will override the periodSeconds and
|
|
failureThreshold when installing the helm chart to trigger a restart of
|
|
the tiller pod over a swact when the postgres DB/server moves from one
|
|
controller to the other.
|
|
|
|
This will help guarantee that the tiller connection is always
|
|
reestablished if the connectivity to the postgres backend fails.
|
|
|
|
Signed-off-by: Robert Church <robert.church@windriver.com>
|
|
---
|
|
charts/armada/templates/deployment-api.yaml | 12 ++++++++----
|
|
1 file changed, 8 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/charts/armada/templates/deployment-api.yaml b/charts/armada/templates/deployment-api.yaml
|
|
index bf23fb2..2b65494 100644
|
|
--- a/charts/armada/templates/deployment-api.yaml
|
|
+++ b/charts/armada/templates/deployment-api.yaml
|
|
@@ -28,10 +28,14 @@ httpGet:
|
|
{{- end }}
|
|
|
|
{{- define "tillerLivenessProbeTemplate" }}
|
|
-httpGet:
|
|
- path: /liveness
|
|
- port: {{ .Values.conf.tiller.probe_port }}
|
|
- scheme: HTTP
|
|
+exec:
|
|
+ command:
|
|
+ - nc
|
|
+ - -vz
|
|
+ - -w
|
|
+ - "1"
|
|
+ - {{ .Values.conf.tiller.sql_endpoint_ip}}
|
|
+ - "5432"
|
|
{{- end }}
|
|
|
|
{{- if .Values.manifests.deployment_api }}
|
|
--
|
|
2.16.6
|
|
|