Skip to content

Commit 7c214b1

Browse files
committed
Update Stellio.
1 parent 3090511 commit 7c214b1

File tree

4 files changed

+82
-90
lines changed

4 files changed

+82
-90
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ORION_VERSION=3.8.1
88

99
# Orion variables
1010
ORION_LD_PORT=1026
11-
ORION_LD_VERSION=1.7.1
11+
ORION_LD_VERSION=1.8.0
1212

1313
# Scorpio variables
1414
SCORPIO_PORT=9090

docker-compose/stellio.yml

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ services:
2222
hostname: stellio
2323
labels:
2424
org.fiware: 'tutorial'
25-
image: stellio/stellio-api-gateway:${STELLIO_DOCKER_TAG}
25+
image: quay.io/fiware/stellio-api-gateway:${STELLIO_DOCKER_TAG}
2626
environment:
2727
- SPRING_PROFILES_ACTIVE=docker
2828
ports:
29-
- ${EXPOSED_PORT:-1026}:${STELLIO_PORT:-9090}
29+
- "${EXPOSED_PORT}:${STELLIO_PORT}"
3030
networks:
3131
- default
3232

3333
search-service:
3434
container_name: stellio-search-service
3535
labels:
3636
org.fiware: 'tutorial'
37-
image: stellio/stellio-search-service:${STELLIO_DOCKER_TAG}
37+
image: quay.io/fiware/stellio-search-service:${STELLIO_DOCKER_TAG}
3838
environment:
3939
- SPRING_PROFILES_ACTIVE=docker
4040
- SPRING_R2DBC_URL=r2dbc:postgresql://postgres/stellio_search
@@ -48,6 +48,18 @@ services:
4848
- APPLICATION_TENANTS_1_NAME=openiot
4949
- APPLICATION_TENANTS_1_ISSUER=https://sso.stellio.io/auth/realms/openiot
5050
- APPLICATION_TENANTS_1_DBSCHEMA=openiot
51+
- APPLICATION_TENANTS_2_NAME=farmer
52+
- APPLICATION_TENANTS_2_ISSUER=https://sso.stellio.io/auth/realms/farmer
53+
- APPLICATION_TENANTS_2_DBSCHEMA=farmer
54+
- APPLICATION_TENANTS_3_NAME=vet
55+
- APPLICATION_TENANTS_3_ISSUER=https://sso.stellio.io/auth/realms/vet
56+
- APPLICATION_TENANTS_3_DBSCHEMA=vet
57+
- APPLICATION_TENANTS_4_NAME=contractor
58+
- APPLICATION_TENANTS_4_ISSUER=https://sso.stellio.io/auth/realms/contractor
59+
- APPLICATION_TENANTS_4_DBSCHEMA=contractor
60+
- APPLICATION_TENANTS_5_NAME=weather
61+
- APPLICATION_TENANTS_5_ISSUER=https://sso.stellio.io/auth/realms/weather
62+
- APPLICATION_TENANTS_5_DBSCHEMA=weather
5163
- APPLICATION_PAGINATION_LIMIT-DEFAULT=30
5264
- APPLICATION_PAGINATION_LIMIT-MAX=1000
5365
ports:
@@ -65,7 +77,7 @@ services:
6577
container_name: stellio-subscription-service
6678
labels:
6779
org.fiware: 'tutorial'
68-
image: stellio/stellio-subscription-service:${STELLIO_DOCKER_TAG}
80+
image: quay.io/fiware/stellio-subscription-service:${STELLIO_DOCKER_TAG}
6981
environment:
7082
- SPRING_PROFILES_ACTIVE=docker
7183
- SPRING_R2DBC_URL=r2dbc:postgresql://postgres/stellio_subscription
@@ -79,12 +91,6 @@ services:
7991
- APPLICATION_TENANTS_1_NAME=openiot
8092
- APPLICATION_TENANTS_1_ISSUER=https://sso.stellio.io/auth/realms/openiot
8193
- APPLICATION_TENANTS_1_DBSCHEMA=openiot
82-
- APPLICATION_TENANTS_2_NAME=vet
83-
- APPLICATION_TENANTS_2_ISSUER=https://sso.stellio.io/auth/realms/vet
84-
- APPLICATION_TENANTS_2_DBSCHEMA=vet
85-
- APPLICATION_TENANTS_3_NAME=contractor
86-
- APPLICATION_TENANTS_3_ISSUER=https://sso.stellio.io/auth/realms/contractor
87-
- APPLICATION_TENANTS_3_DBSCHEMA=contractor
8894
- APPLICATION_PAGINATION_LIMIT-DEFAULT=30
8995
- APPLICATION_PAGINATION_LIMIT-MAX=1000
9096
ports:
@@ -101,7 +107,7 @@ services:
101107
kafka:
102108
labels:
103109
org.fiware: 'tutorial'
104-
image: confluentinc/cp-kafka:7.3.1
110+
image: confluentinc/cp-kafka:7.6.0
105111
container_name: kafka
106112
ports:
107113
- 29092:29092
@@ -120,17 +126,14 @@ services:
120126
KAFKA_INTER_BROKER_LISTENER_NAME: 'PLAINTEXT'
121127
KAFKA_CONTROLLER_LISTENER_NAMES: 'CONTROLLER'
122128
KAFKA_LOG4J_ROOT_LOGLEVEL: INFO
123-
volumes:
124-
- ./stellio/kafka/update_run.sh:/tmp/update_run.sh
125-
command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'"
129+
CLUSTER_ID: NjExODZhMWVjMzllMTFlZm
126130

127131

128132
# Databases
129133
postgres:
130134
labels:
131135
org.fiware: 'tutorial'
132136
image: stellio/stellio-timescale-postgis:${STELLIO_TIMESCALE_POSTGIS}
133-
134137
hostname: postgres
135138
container_name: db-postgres
136139
environment:

docker-compose/stellio/kafka/update_run.sh

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

0 commit comments

Comments
 (0)