From: Irina Date: Mon, 16 Dec 2019 12:59:44 +0000 (+0200) Subject: [RICPLT-2526] KeepAlive configuration changes X-Git-Tag: 2.0.6~6^2 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=3c96c6b02f8dccb69519d9158f7a758ffbdd8aac;p=it%2Fdep.git [RICPLT-2526] KeepAlive configuration changes Change-Id: I30fb7fc68d4765b4130a6f3d2392beccc0e7e9b9 Signed-off-by: Irina --- 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 }} ---