fd5884c428
"dl_path" to replace tar xfz ${ARMADA_PKG} cp -pr ${PKG}/charts ${PKG_BUILD_ROOT} debrepack extracts the ${ARMADA_PKG} as ${PKG_BUILD_ROOT}, so no need cp -pr ${PKG}/charts ${PKG_BUILD_ROOT}. And move the patches into deb_folder Test Plan: Pass: successfully build test Story: 2009221 Task: 43917 Signed-off-by: Yue Tao <yue.tao@windriver.com> Change-Id: I041bbed3dff41ed7e63c99ddfef14c206628436e
31 lines
966 B
Diff
31 lines
966 B
Diff
From e13416638b103fde04feb31027c3148c9685cf7f Mon Sep 17 00:00:00 2001
|
|
From: Robert Church <robert.church@windriver.com>
|
|
Date: Sat, 15 May 2021 16:16:41 -0400
|
|
Subject: [PATCH 4/4] Update postgres liveness check to support IPv6 addresses
|
|
|
|
Templating will add square brackets for IPv6 addresses which are
|
|
interpreted as an array vs. a string. Quote this so that it interpreted
|
|
correctly.
|
|
|
|
Signed-off-by: Robert Church <robert.church@windriver.com>
|
|
---
|
|
charts/armada/templates/deployment-api.yaml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/charts/armada/templates/deployment-api.yaml b/charts/armada/templates/deployment-api.yaml
|
|
index 2b65494..5c4825c 100644
|
|
--- a/charts/armada/templates/deployment-api.yaml
|
|
+++ b/charts/armada/templates/deployment-api.yaml
|
|
@@ -34,7 +34,7 @@ exec:
|
|
- -vz
|
|
- -w
|
|
- "1"
|
|
- - {{ .Values.conf.tiller.sql_endpoint_ip}}
|
|
+ - "{{ .Values.conf.tiller.sql_endpoint_ip }}"
|
|
- "5432"
|
|
{{- end }}
|
|
|
|
--
|
|
2.16.6
|
|
|