Skip to content
Snippets Groups Projects
Verified Commit 981300f3 authored by Martin Weise's avatar Martin Weise
Browse files

WIP

parent ba8904dc
No related branches found
No related tags found
3 merge requests!422Fixed a library issue where the value could not be empty,!421Fixed a library issue where the value could not be empty,!419Fixed a library issue where the value could not be empty
APP_VERSION=1.9.0 APP_VERSION=1.9
FLUENTBIT_VERSION=4.0.0 FLUENTBIT_VERSION=4.0.0
GRAFANA_VERSION=11.4.0 GRAFANA_VERSION=11.4.0
MARIADB_VERSION=11.3.2 MARIADB_VERSION=11.3.2
......
...@@ -177,7 +177,7 @@ services: ...@@ -177,7 +177,7 @@ services:
init: true init: true
restart: "no" restart: "no"
container_name: dbrepo-auth-service-init container_name: dbrepo-auth-service-init
image: registry.datalab.tuwien.ac.at/dbrepo/auth-service-init:1.9.0 image: registry.datalab.tuwien.ac.at/dbrepo/auth-service-init:${APP_VERSION}
environment: environment:
AUTH_SERVICE_ENDPOINT: ${AUTH_SERVICE_ENDPOINT:-http://auth-service:8080} AUTH_SERVICE_ENDPOINT: ${AUTH_SERVICE_ENDPOINT:-http://auth-service:8080}
METADATA_DB: "${METADATA_DB:-dbrepo}" METADATA_DB: "${METADATA_DB:-dbrepo}"
...@@ -200,7 +200,7 @@ services: ...@@ -200,7 +200,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-metadata-service container_name: dbrepo-metadata-service
hostname: metadata-service hostname: metadata-service
image: registry.datalab.tuwien.ac.at/dbrepo/metadata-service:1.9.0 image: registry.datalab.tuwien.ac.at/dbrepo/metadata-service:${APP_VERSION}
environment: environment:
ADMIN_EMAIL: "${ADMIN_EMAIL:-noreply@localhost}" ADMIN_EMAIL: "${ADMIN_EMAIL:-noreply@localhost}"
ANALYSE_SERVICE_ENDPOINT: "${ANALYSE_SERVICE_ENDPOINT:-http://analyse-service:8080}" ANALYSE_SERVICE_ENDPOINT: "${ANALYSE_SERVICE_ENDPOINT:-http://analyse-service:8080}"
...@@ -262,7 +262,7 @@ services: ...@@ -262,7 +262,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-analyse-service container_name: dbrepo-analyse-service
hostname: analyse-service hostname: analyse-service
image: registry.datalab.tuwien.ac.at/dbrepo/analyse-service:1.9.0 image: registry.datalab.tuwien.ac.at/dbrepo/analyse-service:${APP_VERSION}
environment: environment:
AUTH_SERVICE_CLIENT: ${AUTH_SERVICE_CLIENT:-dbrepo-client} AUTH_SERVICE_CLIENT: ${AUTH_SERVICE_CLIENT:-dbrepo-client}
AUTH_SERVICE_CLIENT_SECRET: ${AUTH_SERVICE_CLIENT:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG} AUTH_SERVICE_CLIENT_SECRET: ${AUTH_SERVICE_CLIENT:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG}
...@@ -326,7 +326,7 @@ services: ...@@ -326,7 +326,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-search-service container_name: dbrepo-search-service
hostname: search-service hostname: search-service
image: registry.datalab.tuwien.ac.at/dbrepo/search-service:1.9.0 image: registry.datalab.tuwien.ac.at/dbrepo/search-service:${APP_VERSION}
environment: environment:
AUTH_SERVICE_CLIENT: ${AUTH_SERVICE_CLIENT:-dbrepo-client} AUTH_SERVICE_CLIENT: ${AUTH_SERVICE_CLIENT:-dbrepo-client}
AUTH_SERVICE_CLIENT_SECRET: ${AUTH_SERVICE_CLIENT_SECRET:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG} AUTH_SERVICE_CLIENT_SECRET: ${AUTH_SERVICE_CLIENT_SECRET:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG}
...@@ -348,7 +348,7 @@ services: ...@@ -348,7 +348,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-ui container_name: dbrepo-ui
hostname: ui hostname: ui
image: registry.datalab.tuwien.ac.at/dbrepo/ui:1.9.0 image: registry.datalab.tuwien.ac.at/dbrepo/ui:${APP_VERSION}
environment: environment:
NUXT_PUBLIC_API_CLIENT: "${BASE_URL:-http://localhost}" NUXT_PUBLIC_API_CLIENT: "${BASE_URL:-http://localhost}"
NUXT_PUBLIC_API_SERVER: "${BASE_URL:-http://gateway-service}" NUXT_PUBLIC_API_SERVER: "${BASE_URL:-http://gateway-service}"
...@@ -426,7 +426,7 @@ services: ...@@ -426,7 +426,7 @@ services:
init: true init: true
container_name: dbrepo-search-service-init container_name: dbrepo-search-service-init
hostname: search-service-init hostname: search-service-init
image: registry.datalab.tuwien.ac.at/dbrepo/search-service-init:1.9.0 image: registry.datalab.tuwien.ac.at/dbrepo/search-service-init:${APP_VERSION}
environment: environment:
LOG_LEVEL: ${LOG_LEVEL:-info} LOG_LEVEL: ${LOG_LEVEL:-info}
METADATA_SERVICE_ENDPOINT: ${METADATA_SERVICE_ENDPOINT:-http://metadata-service:8080} METADATA_SERVICE_ENDPOINT: ${METADATA_SERVICE_ENDPOINT:-http://metadata-service:8080}
...@@ -447,7 +447,7 @@ services: ...@@ -447,7 +447,7 @@ services:
init: true init: true
container_name: dbrepo-dashboard-service-init container_name: dbrepo-dashboard-service-init
hostname: search-dashboard-init hostname: search-dashboard-init
image: registry.datalab.tuwien.ac.at/dbrepo/dashboard-service-init:1.9.0 image: registry.datalab.tuwien.ac.at/dbrepo/dashboard-service-init:${APP_VERSION}
environment: environment:
LOG_LEVEL: ${LOG_LEVEL:-info} LOG_LEVEL: ${LOG_LEVEL:-info}
DASHBOARD_UI_ENDPOINT: "${DASHBOARD_UI_ENDPOINT:-http://dashboard-ui:3000}" DASHBOARD_UI_ENDPOINT: "${DASHBOARD_UI_ENDPOINT:-http://dashboard-ui:3000}"
...@@ -498,7 +498,7 @@ services: ...@@ -498,7 +498,7 @@ services:
init: true init: true
container_name: dbrepo-storage-service-init container_name: dbrepo-storage-service-init
hostname: storage-service-init hostname: storage-service-init
image: registry.datalab.tuwien.ac.at/dbrepo/storage-service-init:1.9.0 image: registry.datalab.tuwien.ac.at/dbrepo/storage-service-init:${APP_VERSION}
environment: environment:
S3_ACCESS_KEY_ID: ${S3_ACCESS_KEY_ID:-seaweedfsadmin} S3_ACCESS_KEY_ID: ${S3_ACCESS_KEY_ID:-seaweedfsadmin}
S3_BUCKET: "${S3_BUCKET:-dbrepo}" S3_BUCKET: "${S3_BUCKET:-dbrepo}"
...@@ -514,7 +514,7 @@ services: ...@@ -514,7 +514,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-data-service container_name: dbrepo-data-service
hostname: data-service hostname: data-service
image: registry.datalab.tuwien.ac.at/dbrepo/data-service:1.9.0 image: registry.datalab.tuwien.ac.at/dbrepo/data-service:${APP_VERSION}
environment: environment:
AUTH_SERVICE_CLIENT: "${AUTH_SERVICE_CLIENT:-dbrepo-client}" AUTH_SERVICE_CLIENT: "${AUTH_SERVICE_CLIENT:-dbrepo-client}"
AUTH_SERVICE_CLIENT_SECRET: "${AUTH_SERVICE_CLIENT:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG}" AUTH_SERVICE_CLIENT_SECRET: "${AUTH_SERVICE_CLIENT:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG}"
...@@ -593,7 +593,7 @@ services: ...@@ -593,7 +593,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-dashboard-service container_name: dbrepo-dashboard-service
hostname: dashboard-service hostname: dashboard-service
image: registry.datalab.tuwien.ac.at/dbrepo/dashboard-service:1.9.0 image: registry.datalab.tuwien.ac.at/dbrepo/dashboard-service:${APP_VERSION}
environment: environment:
AUTH_SERVICE_ENDPOINT: ${AUTH_SERVICE_ENDPOINT:-http://auth-service:8080} AUTH_SERVICE_ENDPOINT: ${AUTH_SERVICE_ENDPOINT:-http://auth-service:8080}
BASE_URL: "${BASE_URL:-http://localhost}" BASE_URL: "${BASE_URL:-http://localhost}"
......
#!/bin/bash #!/bin/bash
# preset # preset
VERSION="1.9.0"
MIN_CPU=8 MIN_CPU=8
MIN_RAM=10 MIN_RAM=10
SKIP_CHECKS=${SKIP_CHECKS:-0} SKIP_CHECKS=${SKIP_CHECKS:-0}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment