-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose_with_kong.yaml
354 lines (328 loc) · 10.1 KB
/
compose_with_kong.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
name: online-mart
x-kong-config:
&kong-env
KONG_DATABASE: ${KONG_DATABASE:-postgres}
KONG_PG_DATABASE: ${KONG_PG_DATABASE:-kong}
KONG_PG_HOST: db
KONG_PG_USER: ${KONG_PG_USER:-kong}
KONG_PG_PASSWORD_FILE: /run/secrets/kong_postgres_password
services:
user_producer_svc:
build:
context: ./user_producer
dockerfile: Dockerfile.dev
volumes:
- ./user_producer:/app # Sync local development directory with the container
depends_on:
- broker
ports:
- "8001:8000" # Expose container port 8000 to host port 8000
profiles: ["user"]
user_database_svc:
image: postgres:latest # Use the official PostgreSQL image
restart: always
container_name: User_DB_Container
environment:
POSTGRES_USER_FILE: /run/secrets/user_db_user
POSTGRES_PASSWORD_FILE: /run/secrets/user_db_password
POSTGRES_DB_FILE: /run/secrets/user_database
secrets:
- user_db_user
- user_db_password
- user_database
ports:
- '5433:5432'
volumes:
- users_db:/var/lib/postgresql/data
profiles: ["user"]
product_database_svc:
image: postgres:latest # Use the official PostgreSQL image
restart: always
container_name: Product_DB_Container
environment:
POSTGRES_USER_FILE: /run/secrets/prod_db_user
POSTGRES_PASSWORD_FILE: /run/secrets/prod_db_password
POSTGRES_DB_FILE: /run/secrets/prod_database
secrets:
- prod_db_user
- prod_db_password
- prod_database
ports:
- '5434:5432'
volumes:
- products_db:/var/lib/postgresql/data
profiles: ["product"]
product_producer_svc:
build:
context: ./Product_Services/product_producer
dockerfile: Dockerfile.dev
volumes:
- ./Product_Services/product_producer:/app # Sync local development directory with the container
depends_on:
- broker
ports:
- "8008:8000" # Expose container port 8000 to host port 8000
# profiles: ["product"]
product_consumer_svc:
build:
context: ./Product_Services/product_consumer
dockerfile: Dockerfile.dev
volumes:
- ./Product_Services/product_consumer:/app # Sync local development directory with the container
depends_on:
- product_producer_svc
# - product_database_svc
ports:
- "8009:8000" # Expose container port 8000 to host port 8000
# profiles: ["product"]
inventory_database_svc:
image: postgres:latest # Use the official PostgreSQL image
restart: always
container_name: Inventory_DB_Container
environment:
POSTGRES_USER_FILE: /run/secrets/inv_db_user
POSTGRES_PASSWORD_FILE: /run/secrets/inv_db_password
POSTGRES_DB_FILE: /run/secrets/inv_database
secrets:
- inv_db_user
- inv_db_password
- inv_database
ports:
- '5435:5432'
volumes:
- inventory_db:/var/lib/postgresql/data
profiles: ["inventory--"]
inventory_producer_svc:
build:
context: ./Inventory_Services/inventory_producer
dockerfile: Dockerfile.dev
volumes:
- ./Inventory_Services/inventory_producer:/app # Sync local development directory with the container
depends_on:
- broker
ports:
- "8004:8000" # Expose container port 8000 to host port 8000
profiles: ["inventory"]
inventory_consumer_svc:
build:
context: ./Inventory_Services/inventory_consumer
dockerfile: Dockerfile.dev
volumes:
- ./Inventory_Services/inventory_consumer:/app # Sync local development directory with the container
depends_on:
- inventory_producer_svc
# - inventory_database_svc
ports:
- "8005:8000" # Expose container port 8000 to host port 8000
profiles: ["inventory"]
order_database_svc:
image: postgres:latest # Use the official PostgreSQL image
restart: always
container_name: Order_DB_Container
environment:
POSTGRES_USER_FILE: /run/secrets/ord_db_user
POSTGRES_PASSWORD_FILE: /run/secrets/ord_db_password
POSTGRES_DB_FILE: /run/secrets/ord_database
secrets:
- ord_db_user
- ord_db_password
- ord_database
ports:
- '5436:5432'
volumes:
- order_db:/var/lib/postgresql/data
profiles: ["order--"]
order_producer_svc:
build:
context: ./Order_Services/order_producer
dockerfile: Dockerfile.dev
volumes:
- ./Order_Services/order_producer:/app # Sync local development directory with the container
depends_on:
- broker
ports:
- "8006:8000" # Expose container port 8000 to host port 8000
profiles: ["order"]
order_consumer_svc:
build:
context: ./Order_Services/order_consumer
dockerfile: Dockerfile.dev
volumes:
- ./Order_Services/order_consumer:/app # Sync local development directory with the container
depends_on:
- order_producer_svc
# - order_database_svc
ports:
- "8007:8000" # Expose container port 8000 to host port 8000
profiles: ["order"]
broker:
image: apache/kafka:3.7.0
hostname: broker
container_name: broker
ports:
- '9092:9092'
environment:
KAFKA_NODE_ID: 1
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: 'CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT'
KAFKA_ADVERTISED_LISTENERS: 'PLAINTEXT_HOST://localhost:9092,PLAINTEXT://broker:19092'
KAFKA_PROCESS_ROLES: 'broker,controller'
KAFKA_CONTROLLER_QUORUM_VOTERS: '1@broker:29093'
KAFKA_LISTENERS: 'CONTROLLER://:29093,PLAINTEXT_HOST://:9092,PLAINTEXT://:19092'
KAFKA_INTER_BROKER_LISTENER_NAME: 'PLAINTEXT'
KAFKA_CONTROLLER_LISTENER_NAMES: 'CONTROLLER'
CLUSTER_ID: '4L6g3nShT-eMCtK--X86sw'
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
KAFKA_LOG_DIRS: '/tmp/kraft-combined-logs'
kafka-ui:
image: provectuslabs/kafka-ui
container_name: kafka-ui
ports:
- "8080:8080"
environment:
KAFKA_CLUSTERS_0_NAME: 'Local Kafka Cluster'
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: 'broker:19092'
DYNAMIC_CONFIG_ENABLED: "true"
depends_on:
- broker
# --------------------------------------------------------------
kong-migrations:
image: "${KONG_DOCKER_TAG:-kong:latest}"
command: kong migrations bootstrap
# profiles: [ "database" ]
depends_on:
- db
environment:
<<: *kong-env
secrets:
- kong_postgres_password
restart: on-failure
kong-migrations-up:
image: "${KONG_DOCKER_TAG:-kong:latest}"
command: kong migrations up && kong migrations finish
# profiles: [ "database" ]
depends_on:
- db
environment:
<<: *kong-env
secrets:
- kong_postgres_password
restart: on-failure
kong:
image: "${KONG_DOCKER_TAG:-kong:latest}"
user: "${KONG_USER:-kong}"
environment:
<<: *kong-env
KONG_ADMIN_ACCESS_LOG: /dev/stdout
KONG_ADMIN_ERROR_LOG: /dev/stderr
KONG_PROXY_LISTEN: "${KONG_PROXY_LISTEN:-0.0.0.0:8000}"
KONG_ADMIN_LISTEN: "${KONG_ADMIN_LISTEN:-0.0.0.0:8001}"
KONG_ADMIN_GUI_LISTEN: "${KONG_ADMIN_GUI_LISTEN:-0.0.0.0:8002}"
KONG_PROXY_ACCESS_LOG: /dev/stdout
KONG_PROXY_ERROR_LOG: /dev/stderr
KONG_PREFIX: ${KONG_PREFIX:-/var/run/kong}
KONG_DECLARATIVE_CONFIG: "/opt/kong/kong.yaml"
secrets:
- kong_postgres_password
ports:
# The following two environment variables default to an insecure value (0.0.0.0)
# according to the CIS Security test.
- "${KONG_INBOUND_PROXY_LISTEN:-0.0.0.0}:8000:8000/tcp"
- "${KONG_INBOUND_SSL_PROXY_LISTEN:-0.0.0.0}:8443:8443/tcp"
# Making them mandatory but undefined, like so would be backwards-breaking:
# - "${KONG_INBOUND_PROXY_LISTEN?Missing inbound proxy host}:8000:8000/tcp"
# - "${KONG_INBOUND_SSL_PROXY_LISTEN?Missing inbound proxy ssl host}:8443:8443/tcp"
# Alternative is deactivating check 5.13 in the security bench, if we consider Kong's own config to be enough security here
- "127.0.0.1:8001:8001/tcp"
- "127.0.0.1:8444:8444/tcp"
- "127.0.0.1:8002:8002/tcp"
healthcheck:
test: [ "CMD", "kong", "health" ]
interval: 10s
timeout: 10s
retries: 10
restart: on-failure:5
read_only: true
volumes:
- kong_prefix_vol:${KONG_PREFIX:-/var/run/kong}
- kong_tmp_vol:/tmp
# - ./config:/opt/kong
security_opt:
- no-new-privileges
db:
image: postgres:16.3
# profiles: [ "database" ]
environment:
POSTGRES_DB: ${KONG_PG_DATABASE:-kong}
POSTGRES_USER: ${KONG_PG_USER:-kong}
POSTGRES_PASSWORD_FILE: /run/secrets/kong_postgres_password
secrets:
- kong_postgres_password
healthcheck:
test:
[
"CMD",
"pg_isready",
"-d",
"${KONG_PG_DATABASE:-kong}",
"-U",
"${KONG_PG_USER:-kong}"
]
interval: 30s
timeout: 30s
retries: 3
restart: on-failure
stdin_open: true
tty: true
volumes:
- kong_data:/var/lib/postgresql/data
secrets:
user_db_user:
file: .\Inventory_Services\user_db_user.txt
user_db_password:
file: .\Inventory_Services\user_db_password.txt
user_database:
file: .\Inventory_Services\user_database.txt
kong_postgres_password:
file: .\POSTGRES_PASSWORD
prod_db_user:
file: prod_db_user.txt
prod_db_password:
file: prod_db_password.txt
prod_database:
file: prod_database.txt
inv_db_user:
file: inv_db_user.txt
inv_db_password:
file: inv_db_password.txt
inv_database:
file: inv_database.txt
ord_db_user:
file: ord_db_user.txt
ord_db_password:
file: ord_db_password.txt
ord_database:
file: ord_database.txt
volumes:
users_db:
driver: local
products_db:
driver: local
inventory_db:
driver: local
order_db:
driver: local
kong_data: {}
kong_prefix_vol:
driver_opts:
type: tmpfs
device: tmpfs
kong_tmp_vol:
driver_opts:
type: tmpfs
device: tmpfs
networks:
default:
driver: bridge