Skip to content

Commit

Permalink
Added hikari settings
Browse files Browse the repository at this point in the history
  • Loading branch information
chris.ditcher authored and chris.ditcher committed Oct 17, 2024
1 parent becd8b5 commit 8abb109
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tools/config/update-configmap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,14 @@ PARSER_CONFIG="
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=CONNECTION_TIMEOUT="60000" \
--from-literal=GRAD_STUDENT_API="http://educ-grad-student-api.$GRAD_NAMESPACE-$envValue.svc.cluster.local:8080/" \
--from-literal=GRAD_TRAX_API="http://educ-grad-trax-api.$GRAD_NAMESPACE-$envValue.svc.cluster.local:8080/" \
--from-literal=KEYCLOAK_TOKEN_URL="https://soam-$envValue.apps.silver.devops.gov.bc.ca/" \
--from-literal=MAXIMUM_POOL_SIZE="30" \
--from-literal=MAX_LIFETIME="600000" \
--from-literal=CONNECTION_TIMEOUT='60000' \
--from-literal=MAXIMUM_POOL_SIZE='30' \
--from-literal=MIN_IDLE='30' \
--from-literal=IDLE_TIMEOUT='300000' \
--from-literal=MAX_LIFETIME='600000' \
--dry-run=client -o yaml | oc apply -f -
echo

Expand Down

0 comments on commit 8abb109

Please sign in to comment.