-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenvoy.yaml
More file actions
519 lines (509 loc) · 24.6 KB
/
envoy.yaml
File metadata and controls
519 lines (509 loc) · 24.6 KB
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
admin:
access_log_path: "/tmp/admin_access.log"
address:
socket_address:
address: 0.0.0.0
port_value: 9901
static_resources:
listeners:
- name: listener_main_service
address:
socket_address:
address: 0.0.0.0
port_value: 8081
filter_chains:
- filters:
- name: envoy.filters.network.http_connection_manager
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
codec_type: AUTO
stat_prefix: grpc_json_transcoder
route_config:
virtual_hosts:
- name: main_service
domains: ["*"]
routes:
- match:
prefix: ""
route:
cluster: main_service
decorator:
operation: "transcoding"
typed_per_filter_config:
envoy.filters.http.cors:
"@type": type.googleapis.com/envoy.extensions.filters.http.cors.v3.CorsPolicy
allow_origin_string_match:
- prefix: "http://localhost:5173"
- prefix: "https://yourfrontend.com"
- prefix: "http://localhost:4173"
allow_methods: "GET, POST, PUT, DELETE, OPTIONS"
allow_headers: "content-type, authorization"
expose_headers: "x-custom-header"
max_age: "86400"
allow_credentials: true
http_filters:
- name: envoy.filters.http.cors
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.cors.v3.Cors
- name: envoy.filters.http.jwt_authn
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.jwt_authn.v3.JwtAuthentication
providers:
my_jwt_provider:
issuer: "127.0.0.1"
local_jwks:
inline_string: |
{
"keys": [
{
"kty": "RSA",
"alg": "RS256",
"use": "sig",
"n": "sqeJGov8nTaxpcqKnjOlt2_6YgBdm9vPX67brfmEY--M4mn7Tbt_Q76hDk44CvLvFll7amwO763rA5m9mQDTgmK57_E7zaF4T2A2B0xqg8V_f6EG5G9lBmtwqHX4mDW8B4ZKXX9KYzVK6wndoJsRu1rq1FmZMeapDpjXL1Rb0DVP9ZPxnvGDhVBxA83lzUhIRBX3_2CwrCrET9nCEDOAer7U9xKz-oVbXyuCvUwYCJPN02gOV_sBjHrW2T09bEsUW6s-vLspv9AVC5sjYduhAVrqmh1RGhZOPziwwa1DmvO5z_qEdDawSOki7dU8zxZQ5cX18BzkXZjuwhjQYP9vlw",
"e": "AQAB"
}
]
}
forward: true
payload_in_metadata: "jwt_payload"
from_cookies:
- token
rules:
# Public routes - không cần JWT
- match:
path: "/api/v1/users/login"
headers:
- name: ":method"
string_match:
exact: "POST"
requires: {}
- match:
path: "/api/v1/users/register"
headers:
- name: ":method"
string_match:
exact: "POST"
requires: {}
- match:
path: "/api/v1/users/verify"
headers:
- name: ":method"
string_match:
exact: "POST"
requires: {}
- match:
path: "/api/v1/users/resend-otp"
headers:
- name: ":method"
string_match:
exact: "POST"
requires: {}
- match:
path: "/api/v1/users/logout"
headers:
- name: ":method"
string_match:
exact: "POST"
requires: {}
- match:
path: "/api/v1/users"
headers:
- name: ":method"
string_match:
exact: "POST"
requires: {}
# Private route
- match:
prefix: "/"
requires:
provider_name: "my_jwt_provider"
- name: envoy.filters.http.rbac
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
rules:
action: ALLOW
policies:
"public-routes-policy":
permissions:
- or_rules:
rules:
- and_rules:
rules:
- header:
name: ":method"
string_match:
exact: "POST"
- url_path:
path:
exact: "/api/v1/users/login"
- and_rules:
rules:
- header:
name: ":method"
string_match:
exact: "POST"
- url_path:
path:
exact: "/api/v1/users/register"
- and_rules:
rules:
- header:
name: ":method"
string_match:
exact: "POST"
- url_path:
path:
exact: "/api/v1/users/verify"
- and_rules:
rules:
- header:
name: ":method"
string_match:
exact: "POST"
- url_path:
path:
exact: "/api/v1/users/resend-otp"
- and_rules:
rules:
- header:
name: ":method"
string_match:
exact: "POST"
- url_path:
path:
exact: "/api/v1/users/logout"
- and_rules:
rules:
- header:
name: ":method"
string_match:
exact: "POST"
- url_path:
path:
exact: "/api/v1/users"
principals:
- any: true
"verified-users-policy":
permissions:
- not_rule:
or_rules:
rules:
- url_path:
path:
exact: "/api/v1/users/login"
- url_path:
path:
exact: "/api/v1/users/register"
- url_path:
path:
exact: "/api/v1/users/verify"
- url_path:
path:
exact: "/api/v1/users/resend-otp"
- url_path:
path:
exact: "/api/v1/users/logout"
- and_rules:
rules:
- header:
name: ":method"
string_match:
exact: "POST"
- url_path:
path:
exact: "/api/v1/users"
principals:
- metadata:
filter: "envoy.filters.http.jwt_authn"
path:
- key: "jwt_payload"
- key: "isVerified"
value:
string_match:
exact: "true"
- name: envoy.filters.http.lua
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua
inline_code: |
function envoy_on_response(response_handle)
local token = response_handle:headers():get("authorization")
if token then
response_handle:headers():add("Set-Cookie", "token=" .. token .. "; Path=/; HttpOnly; Secure; SameSite=None")
end
end
- name: envoy.filters.http.grpc_json_transcoder
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.grpc_json_transcoder.v3.GrpcJsonTranscoder
proto_descriptor: "/etc/envoy/proto.pb"
services:
[
"project_service.UserService",
"project_service.SprintService",
"project_service.ProjectService",
"project_service.IssueService",
"project_service.ProjectMemberService",
"project_service.CommentService",
"project_service.ProjectTeamService",
]
convert_grpc_status: true
print_options:
always_print_primitive_fields: true
preserve_proto_field_names: true
- name: envoy.filters.http.router
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.router.v3.Router
- name: listener_notification_service
address:
socket_address:
address: 0.0.0.0
port_value: 8082
filter_chains:
- filters:
- name: envoy.filters.network.http_connection_manager
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
stat_prefix: ws_gateway
codec_type: AUTO
upgrade_configs:
- upgrade_type: websocket
route_config:
name: ws_route
virtual_hosts:
- name: ws_host
domains: ["*"]
routes:
- match:
prefix: "/"
route:
cluster: notification_service
typed_per_filter_config:
envoy.filters.http.cors:
"@type": type.googleapis.com/envoy.extensions.filters.http.cors.v3.CorsPolicy
allow_origin_string_match:
- prefix: "http://localhost:5173"
- prefix: "https://yourfrontend.com"
- prefix: 'http://localhost:4173'
allow_methods: "GET, POST, PUT, DELETE, OPTIONS"
allow_headers: "content-type, authorization"
expose_headers: "x-custom-header"
# allow_methods: "GET, POST, PUT, PATCH, DELETE, OPTIONS"
# allow_headers: "content-type, authorization, accept, origin, x-requested-with"
# expose_headers: "authorization"
max_age: "86400"
allow_credentials: true
http_filters:
- name: envoy.filters.http.cors
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.cors.v3.Cors
- name: envoy.filters.http.jwt_authn
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.jwt_authn.v3.JwtAuthentication
providers:
my_jwt_provider:
issuer: "127.0.0.1"
local_jwks:
inline_string: |
{
"keys": [
{
"kty": "RSA",
"alg": "RS256",
"use": "sig",
"n": "sqeJGov8nTaxpcqKnjOlt2_6YgBdm9vPX67brfmEY--M4mn7Tbt_Q76hDk44CvLvFll7amwO763rA5m9mQDTgmK57_E7zaF4T2A2B0xqg8V_f6EG5G9lBmtwqHX4mDW8B4ZKXX9KYzVK6wndoJsRu1rq1FmZMeapDpjXL1Rb0DVP9ZPxnvGDhVBxA83lzUhIRBX3_2CwrCrET9nCEDOAer7U9xKz-oVbXyuCvUwYCJPN02gOV_sBjHrW2T09bEsUW6s-vLspv9AVC5sjYduhAVrqmh1RGhZOPziwwa1DmvO5z_qEdDawSOki7dU8zxZQ5cX18BzkXZjuwhjQYP9vlw",
"e": "AQAB"
}
]
}
forward: true
payload_in_metadata: "jwt_payload"
from_cookies:
- token
rules:
# Private route
- match:
prefix: "/"
requires:
provider_name: "my_jwt_provider"
- name: envoy.filters.http.rbac
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
rules:
action: ALLOW
policies:
"all-access-policy":
permissions:
- any: true
principals:
- any: true
- name: envoy.filters.http.lua
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua
inline_code: |
function envoy_on_response(response_handle)
local token = response_handle:headers():get("authorization")
if token then
response_handle:headers():add("Set-Cookie", "token=" .. token .. "; Path=/; HttpOnly; Secure; SameSite=None")
end
end
- name: envoy.filters.http.router
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.router.v3.Router
- name: listener_chat_service
address:
socket_address:
address: 0.0.0.0
port_value: 8083
filter_chains:
- filters:
- name: envoy.filters.network.http_connection_manager
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
codec_type: AUTO
stat_prefix: ingress_http
stream_idle_timeout: 0s
upgrade_configs:
- upgrade_type: websocket
enabled: true
- upgrade_type: "GET"
enabled: true
# websocket_config:
# idle_timeout: 0s
# max_connect_attempts: 5
route_config:
virtual_hosts:
- name: chat_service
domains: ["*"]
routes:
- match:
prefix: "/"
route:
cluster: chat_service
timeout: 0s
upgrade_configs:
- upgrade_type: websocket
enabled: true
- upgrade_type: "GET"
enabled: true
typed_per_filter_config:
envoy.filters.http.cors:
"@type": type.googleapis.com/envoy.extensions.filters.http.cors.v3.CorsPolicy
allow_origin_string_match:
- prefix: "*"
allow_headers: "content-type,authorization,upgrade,connection,sec-websocket-key,sec-websocket-version,sec-websocket-extensions,cookie,sid"
allow_methods: "GET,POST,OPTIONS"
allow_methods: "GET,POST"
expose_headers: "authorization"
allow_credentials: true
http_filters:
- name: envoy.filters.http.cors
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.cors.v3.Cors
- name: envoy.filters.http.jwt_authn
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.jwt_authn.v3.JwtAuthentication
providers:
my_jwt_provider:
issuer: "127.0.0.1"
local_jwks:
inline_string: |
{
"keys": [
{
"kty": "RSA",
"alg": "RS256",
"use": "sig",
"n": "sqeJGov8nTaxpcqKnjOlt2_6YgBdm9vPX67brfmEY--M4mn7Tbt_Q76hDk44CvLvFll7amwO763rA5m9mQDTgmK57_E7zaF4T2A2B0xqg8V_f6EG5G9lBmtwqHX4mDW8B4ZKXX9KYzVK6wndoJsRu1rq1FmZMeapDpjXL1Rb0DVP9ZPxnvGDhVBxA83lzUhIRBX3_2CwrCrET9nCEDOAer7U9xKz-oVbXyuCvUwYCJPN02gOV_sBjHrW2T09bEsUW6s-vLspv9AVC5sjYduhAVrqmh1RGhZOPziwwa1DmvO5z_qEdDawSOki7dU8zxZQ5cX18BzkXZjuwhjQYP9vlw",
"e": "AQAB"
}
]
}
forward: true
payload_in_metadata: "jwt_payload"
from_cookies:
- token
rules:
# Private route
- match:
prefix: "/"
requires:
provider_name: "my_jwt_provider"
- name: envoy.filters.http.rbac
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
rules:
action: ALLOW
policies:
"all-access-policy":
permissions:
- any: true
principals:
- any: true
- name: envoy.filters.http.lua
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua
inline_code: |
function envoy_on_response(response_handle)
local token = response_handle:headers():get("authorization")
if token then
response_handle:headers():add("Set-Cookie", "token=" .. token .. "; Path=/; HttpOnly; Secure; SameSite=None")
end
end
- name: envoy.filters.http.grpc_json_transcoder
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.grpc_json_transcoder.v3.GrpcJsonTranscoder
proto_descriptor: "/etc/envoy/proto.pb"
services: ["chat_service.ChatService"]
convert_grpc_status: true
print_options:
always_print_primitive_fields: true
preserve_proto_field_names: true
- name: envoy.filters.http.router
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.http.router.v3.Router
clusters:
- name: main_service
type: LOGICAL_DNS
connect_timeout: 5s
lb_policy: ROUND_ROBIN
http2_protocol_options: {}
load_assignment:
cluster_name: main_service
endpoints:
- lb_endpoints:
- endpoint:
address:
socket_address:
address: 172.17.0.1
port_value: 5001
- name: notification_service
type: LOGICAL_DNS
connect_timeout: 5s
lb_policy: ROUND_ROBIN
load_assignment:
cluster_name: notification_service
endpoints:
- lb_endpoints:
- endpoint:
address:
socket_address:
address: 172.17.0.1
port_value: 5002
- name: chat_service
type: LOGICAL_DNS
connect_timeout: 30s
lb_policy: ROUND_ROBIN
http_protocol_options: {}
circuit_breakers:
thresholds:
- max_connections: 10000
max_pending_requests: 10000
max_retries: 3
load_assignment:
cluster_name: chat_service
endpoints:
- lb_endpoints:
- endpoint:
address:
socket_address:
address: 172.17.0.1
port_value: 5003