From fb793d4ad74cc9951b5648f996c5df3383b0ce9b Mon Sep 17 00:00:00 2001 From: George Vlahavas Date: Wed, 14 Apr 2021 23:54:54 +0300 Subject: [PATCH] Revert "Revert "Add KEA environment variables in groovy file"" This reverts commit 42976e4dbab58b46c6af3c04936c8a08437762ec. --- kea_testing.groovy | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/kea_testing.groovy b/kea_testing.groovy index b8c6641..9e5d0d5 100644 --- a/kea_testing.groovy +++ b/kea_testing.groovy @@ -16,6 +16,44 @@ pipeline { DEPLOYMENT_HOST = "116.203.166.220:2376" DEPLOYMENT_HOST_CREDENTIALS = "vm2-creds" + + // KEA specific + APP_NAME=KEA + APP_ENV=production + APP_DEBUG=true + APP_URL="http://kea.curex-project.eu" + + LOG_CHANNEL=stack + + DB_CONNECTION=pgsql + DB_HOST=timescaledb + DB_PORT=5432 + DB_DATABASE=kea + DB_USERNAME=postgres + DB_PASSWORD=postgres + + BROADCAST_DRIVER=log + CACHE_DRIVER=file + QUEUE_CONNECTION=sync + SESSION_DRIVER=file + SESSION_LIFETIME=120 + + JWT_TTL=1440 + + ELASTICSEARCH_HOST=elasticsearch + ELASTICSEARCH_PORT=9200 + ELASTICSEARCH_SCHEME=http + + MQTT_HOST=mosquitto + MQTT_PORT=1883 + MQTT_DEBUG=false + MQTT_QOS=0 + MQTT_RETAIN=0 + + MLTD_HOST=mltd + MLTD_PORT=5000 + OD_HOST=od + OD_PORT=9091 } stages { -- 2.2.2