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

Update version

parent 854d96dd
Branches
Tags
3 merge requests!231CI: Remove build for log-service,!228Better error message handling in the frontend,!223Release of version 1.4.0
...@@ -12,7 +12,7 @@ helm upgrade --install dbrepo \ ...@@ -12,7 +12,7 @@ helm upgrade --install dbrepo \
-n dbrepo \ -n dbrepo \
"oci://dbrepo.azurecr.io/helm/dbrepo-core" \ "oci://dbrepo.azurecr.io/helm/dbrepo-core" \
--values ./values.yaml \ --values ./values.yaml \
--version "0.1.4-RC2" \ --version "0.1.4" \
--create-namespace \ --create-namespace \
--cleanup-on-fail --cleanup-on-fail
``` ```
...@@ -23,19 +23,12 @@ Our chart depends on seven other charts which will be automatically resolved whe ...@@ -23,19 +23,12 @@ Our chart depends on seven other charts which will be automatically resolved whe
* Keycloak (Bitnami, v17.3.3) for [Authentication Service](../system-services-authentication) * Keycloak (Bitnami, v17.3.3) for [Authentication Service](../system-services-authentication)
* MariaDB Galera (Bitnami, v10.1.3) for [Data Database](../system-databases-data) & [Metadata Database](../system-databases-metadata) * MariaDB Galera (Bitnami, v10.1.3) for [Data Database](../system-databases-data) & [Metadata Database](../system-databases-metadata)
* MinIO (Bitnami, v12.9.4) for [Storage Service](../system-services-storage) * SeaweedFS (SeaweedFS, v3.59.4) for [Storage Service](../system-services-storage)
* OpenSearch (OpenSearch Project, v2.16.0) for [Search Database](../system-databases-search) * OpenSearch (OpenSearch Project, v2.16.0) for [Search Database](../system-databases-search)
* OpenSearch Dashboards (OpenSearch Project, v2.14.0) for [Search Dashboard](../system-other-search-dashboard) * OpenSearch Dashboards (OpenSearch Project, v2.14.0) for [Search Dashboard](../system-other-search-dashboard)
* PostgreSQL HA (Bitnami, v12.1.7) for [Auth Database](../system-databases-auth) * PostgreSQL HA (Bitnami, v12.1.7) for [Auth Database](../system-databases-auth)
* RabbitMQ (Bitnami, v12.5.1) for [Broker Service](../system-services-broker) * RabbitMQ (Bitnami, v12.5.1) for [Broker Service](../system-services-broker)
* FluentBit (FluentBit, v0.40.0) for logging in the cluster.
### Backup
tbd
### Restore
tbd
## Limitations ## Limitations
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
<label for="version">Version</label> <label for="version">Version</label>
<select style="margin-left:8px;" id="version" name="version" onchange="switchVersion(this.options[this.selectedIndex].value)"> <select style="margin-left:8px;" id="version" name="version" onchange="switchVersion(this.options[this.selectedIndex].value)">
<option value="latest">latest</option> <option value="latest">latest</option>
<option value="1.4">1.4</option>
<option value="1.3">1.3</option> <option value="1.3">1.3</option>
</select> </select>
<script> <script>
...@@ -12,7 +13,7 @@ ...@@ -12,7 +13,7 @@
if (segments.length === 5) { if (segments.length === 5) {
return segments[3] return segments[3]
} else { } else {
return '1.3' return '1.4'
} }
} }
function switchVersion(value) { function switchVersion(value) {
......
...@@ -18,7 +18,7 @@ services: ...@@ -18,7 +18,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-metadata-db container_name: dbrepo-metadata-db
hostname: metadata-db hostname: metadata-db
image: docker.io/dbrepo/metadata-db:latest image: docker.io/dbrepo/metadata-db:0.1.4
volumes: volumes:
- metadata-db-data:/bitnami/mariadb - metadata-db-data:/bitnami/mariadb
- ./dist/setup-schema_local.sql:/docker-entrypoint-initdb.d/setup-schema_local.sql - ./dist/setup-schema_local.sql:/docker-entrypoint-initdb.d/setup-schema_local.sql
...@@ -80,7 +80,7 @@ services: ...@@ -80,7 +80,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-authentication-service container_name: dbrepo-authentication-service
hostname: authentication-service hostname: authentication-service
image: docker.io/dbrepo/authentication-service:latest image: docker.io/dbrepo/authentication-service:0.1.4
ports: ports:
- "8443:8443" - "8443:8443"
- "8080:8080" - "8080:8080"
...@@ -105,7 +105,7 @@ services: ...@@ -105,7 +105,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-metadata-service container_name: dbrepo-metadata-service
hostname: metadata-service hostname: metadata-service
image: docker.io/dbrepo/metadata-service:latest image: docker.io/dbrepo/metadata-service:0.1.4
volumes: volumes:
- "${SHARED_FILESYSTEM:-/tmp}:/tmp" - "${SHARED_FILESYSTEM:-/tmp}:/tmp"
ports: ports:
...@@ -178,7 +178,7 @@ services: ...@@ -178,7 +178,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-analyse-service container_name: dbrepo-analyse-service
hostname: analyse-service hostname: analyse-service
image: docker.io/dbrepo/analyse-service:latest image: docker.io/dbrepo/analyse-service:0.1.4
ports: ports:
- "5000:5000" - "5000:5000"
environment: environment:
...@@ -222,7 +222,7 @@ services: ...@@ -222,7 +222,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-search-db container_name: dbrepo-search-db
hostname: search-db hostname: search-db
image: docker.io/dbrepo/search-db:latest image: docker.io/dbrepo/search-db:0.1.4
ports: ports:
- "9200:9200" - "9200:9200"
healthcheck: healthcheck:
...@@ -246,7 +246,7 @@ services: ...@@ -246,7 +246,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-search-service container_name: dbrepo-search-service
hostname: search-service hostname: search-service
image: docker.io/dbrepo/search-service:latest image: docker.io/dbrepo/search-service:0.1.4
ports: ports:
- "4000:4000" - "4000:4000"
environment: environment:
...@@ -258,7 +258,7 @@ services: ...@@ -258,7 +258,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-data-db-sidecar container_name: dbrepo-data-db-sidecar
hostname: data-db-sidecar hostname: data-db-sidecar
image: docker.io/dbrepo/data-db-sidecar:latest image: docker.io/dbrepo/data-db-sidecar:0.1.4
ports: ports:
- "3305:3305" - "3305:3305"
environment: environment:
...@@ -278,7 +278,7 @@ services: ...@@ -278,7 +278,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-ui container_name: dbrepo-ui
hostname: ui hostname: ui
image: docker.io/dbrepo/ui:latest image: docker.io/dbrepo/ui:0.1.4
volumes: volumes:
- ./dist/dbrepo.config.json:/app/dbrepo.config.json - ./dist/dbrepo.config.json:/app/dbrepo.config.json
depends_on: depends_on:
...@@ -334,7 +334,7 @@ services: ...@@ -334,7 +334,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-search-db-init container_name: dbrepo-search-db-init
hostname: search-db-init hostname: search-db-init
image: docker.io/dbrepo/search-db-init:latest image: docker.io/dbrepo/search-db-init:0.1.4
environment: environment:
OPENSEARCH_HOST: ${SEARCH_DB_HOST:-http://search-db:9200} OPENSEARCH_HOST: ${SEARCH_DB_HOST:-http://search-db:9200}
CURL_EXTRA_ARGS: ${SEARCH_DB_EXTRA_ARGS:-} CURL_EXTRA_ARGS: ${SEARCH_DB_EXTRA_ARGS:-}
...@@ -367,7 +367,7 @@ services: ...@@ -367,7 +367,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-storage-service-init container_name: dbrepo-storage-service-init
hostname: storage-service-init hostname: storage-service-init
image: docker.io/dbrepo/storage-service-init:latest image: docker.io/dbrepo/storage-service-init:0.1.4
environment: environment:
SEAWEEDFS_ENDPOINT: "${STORAGE_SEAWEEDFS_ENDPOINT:-storage-service:9333}" SEAWEEDFS_ENDPOINT: "${STORAGE_SEAWEEDFS_ENDPOINT:-storage-service:9333}"
depends_on: depends_on:
...@@ -406,7 +406,7 @@ services: ...@@ -406,7 +406,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-data-service container_name: dbrepo-data-service
hostname: data-service hostname: data-service
image: docker.io/dbrepo/data-service:latest image: docker.io/dbrepo/data-service:0.1.4
ports: ports:
- "9093:9093" - "9093:9093"
environment: environment:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment