From 3c96c6b02f8dccb69519d9158f7a758ffbdd8aac Mon Sep 17 00:00:00 2001 From: Irina Date: Mon, 16 Dec 2019 14:59:44 +0200 Subject: [PATCH] [RICPLT-2526] KeepAlive configuration changes Change-Id: I30fb7fc68d4765b4130a6f3d2392beccc0e7e9b9 Signed-off-by: Irina --- .../50-RIC-Platform/helm/e2mgr/templates/configmap.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/ric-platform/50-RIC-Platform/helm/e2mgr/templates/configmap.yaml b/ric-platform/50-RIC-Platform/helm/e2mgr/templates/configmap.yaml index 04dc74dc..ca91f955 100644 --- a/ric-platform/50-RIC-Platform/helm/e2mgr/templates/configmap.yaml +++ b/ric-platform/50-RIC-Platform/helm/e2mgr/templates/configmap.yaml @@ -109,6 +109,18 @@ data: rnibRetryIntervalMs: {{ .Values.e2mgr.rnibRetryIntervalMs }} {{- else }} rnibRetryIntervalMs: 10 - {{- end }} + {{- end }} + + {{- if hasKey .Values.e2mgr "keepAliveResponseTimeoutMs" }} + keepAliveResponseTimeoutMs: {{ .Values.e2mgr.keepAliveResponseTimeoutMs }} + {{- else }} + keepAliveResponseTimeoutMs: 1500 + {{- end }} + + {{- if hasKey .Values.e2mgr "keepAliveDelayMs" }} + keepAliveDelayMs: {{ .Values.e2mgr.keepAliveDelayMs }} + {{- else }} + keepAliveDelayMs: 500 + {{- end }} --- -- 2.16.6