From e9de7f65855420db72a5c585b224c0b0b31a9a47 Mon Sep 17 00:00:00 2001 From: Sylvain Desbureaux Date: Wed, 14 Oct 2020 09:07:14 +0200 Subject: [CLAMP] Give times to mariadb to come up On some environments, clamp database is restarted in the middle of the init script. The consequence is then a weird behavior, especially if the users are not set. This patch adds more time to the DB in the environment override file (which is supposed to be used in slow environnement). Issue-ID: OOM-2597 Signed-off-by: Sylvain Desbureaux Change-Id: Ieb700afbb27610dbad18d860b7fb85ac95c2bb0d --- kubernetes/onap/resources/overrides/environment.yaml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'kubernetes/onap') diff --git a/kubernetes/onap/resources/overrides/environment.yaml b/kubernetes/onap/resources/overrides/environment.yaml index 5f2336382f..61b1838b83 100644 --- a/kubernetes/onap/resources/overrides/environment.yaml +++ b/kubernetes/onap/resources/overrides/environment.yaml @@ -92,6 +92,11 @@ clamp: initialDelaySeconds: 60 readiness: initialDelaySeconds: 60 + clamp-mariadb: + liveness: + initialDelaySeconds: 30 + readiness: + initialDelaySeconds: 30 dcaegen2: dcae-cloudify-manager: liveness: -- cgit