From bde9fb5aa28962e48c28bac49eb8aae056cd6cf8 Mon Sep 17 00:00:00 2001 From: "chris.ditcher" Date: Thu, 17 Oct 2024 10:59:21 -0700 Subject: [PATCH] Added hikari settings --- tools/config/update-configmap.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/config/update-configmap.sh b/tools/config/update-configmap.sh index 9b99e81..1b15b35 100644 --- a/tools/config/update-configmap.sh +++ b/tools/config/update-configmap.sh @@ -54,6 +54,11 @@ echo Creating config map "$APP_NAME"-config-map oc create -n "$GRAD_NAMESPACE"-"$envValue" configmap "$APP_NAME"-config-map \ --from-literal=APP_LOG_LEVEL="$APP_LOG_LEVEL" \ --from-literal=ENABLE_FLYWAY="true" \ + --from-literal=CONNECTION_TIMEOUT='30000' \ + --from-literal=MAXIMUM_POOL_SIZE='10' \ + --from-literal=MIN_IDLE='10' \ + --from-literal=IDLE_TIMEOUT='300000' \ + --from-literal=MAX_LIFETIME='420000' \ --dry-run=client -o yaml | oc apply -f - echo