Skip to content

Commit 5e50896

Browse files
committed
Merge branch 'remove-adapter-service' into 'main'
Remove adapter service from deployment (incl. in updated span service) See merge request ExplorViz/code/deployment!148
2 parents 4544316 + b7a2b2e commit 5e50896

File tree

8 files changed

+8
-578
lines changed

8 files changed

+8
-578
lines changed

docker/.env

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ COMPOSE_PROFILES=env
66
EXPLORVIZ_JAVA_IMAGE_TYPE=jvm
77

88
# ExplorViz Image Tags
9-
ADAPTER_SERVICE_IMAGE_TAG=latest
109
SPAN_SERVICE_IMAGE_TAG=latest
1110
USER_SERVICE_IMAGE_TAG=latest
1211
COLLABORATION_SERVICE_IMAGE_TAG=latest
@@ -30,7 +29,6 @@ COLLABORATION_HOSTNAME=collaboration-service
3029
USER_PORT=8080
3130
SPAN_PORT=8080
3231
COLLABORATION_PORT=4444
33-
ADAPTER_PORT=8087
3432
FRONTEND_PORT=8080
3533

3634
# ExplorViz Frontend Auth
@@ -41,7 +39,6 @@ AUTH0_LOGOUT_URL=http://localhost:8080/
4139
NO_AUTH_USER_NICKNAME=user-1
4240

4341
# ExplorViz Scaling
44-
ADAPTER_REPLICAS=1
4542
SPAN_REPLICAS=1
4643

4744
# Monitoring

docker/.json-schemas/java/adapter-service-schema.json

Lines changed: 0 additions & 29 deletions
This file was deleted.

docker/.json-schemas/java/main-schema.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,14 @@
99
"type": "object"
1010
},
1111
"properties": {
12-
"adapter-service": {
13-
"$ref": "adapter-service-schema.json"
14-
},
1512
"span-service": {
1613
"$ref": "span-service-schema.json"
1714
},
1815
"user-service": {
1916
"$ref": "user-service-schema.json"
2017
}
2118
},
22-
"required": [
23-
"adapter-service",
24-
"span-service",
25-
"user-service"
26-
]
19+
"required": ["span-service", "user-service"]
2720
}
2821
},
2922
"required": ["services"]

docker/compose.yaml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,6 @@ include:
1313
- ./compose/compose.base.yaml
1414

1515
services:
16-
adapter-service:
17-
hostname: adapter-service
18-
image: explorviz/adapter-service-${EXPLORVIZ_JAVA_IMAGE_TYPE}:${ADAPTER_SERVICE_IMAGE_TAG}
19-
env_file:
20-
- path: ./.env
21-
- path: ./.env-custom
22-
required: false
23-
depends_on:
24-
init-kafka:
25-
condition: service_completed_successfully
26-
kafka:
27-
condition: service_healthy
28-
schema-registry:
29-
condition: service_started
30-
environment:
31-
- QUARKUS_KAFKA_STREAMS_SCHEMA_REGISTRY_URL=http://schema-registry:8081
32-
- EXPLORVIZ_LOG_LVL=DEBUG
33-
- EXPLORVIZ_VALIDATE_TOKEN_EXISTENCE=true
34-
deploy:
35-
mode: replicated
36-
replicas: ${ADAPTER_REPLICAS}
37-
3816
span-service:
3917
hostname: span-service
4018
image: explorviz/span-service-${EXPLORVIZ_JAVA_IMAGE_TYPE}:${SPAN_SERVICE_IMAGE_TAG}

0 commit comments

Comments
 (0)