Merge "[RICPLT-2526] KeepAlive configuration changes"
authorLusheng Ji <lji@research.att.com>
Fri, 20 Dec 2019 04:07:40 +0000 (04:07 +0000)
committerGerrit Code Review <gerrit@o-ran-sc.org>
Fri, 20 Dec 2019 04:07:40 +0000 (04:07 +0000)
ric-platform/50-RIC-Platform/helm/e2mgr/templates/configmap.yaml

index 04dc74d..ca91f95 100644 (file)
@@ -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 }}
 
 ---