-
Notifications
You must be signed in to change notification settings - Fork 0
/
gateway-service.yml
271 lines (268 loc) · 12.7 KB
/
gateway-service.yml
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
# Last update September 2023 (rlh)
spring:
cloud:
gateway:
# This is if we want manually mapping routing using service discovery
# The postfix for '-service' microservices is optional
routes:
- id: mail-service
uri: ${MAIL_SERVICE_URL:http://localhost:8352}/
predicates:
- Path=/ailegorreta/mail-service/**
filters:
- RewritePath=/ailegorreta/mail-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: mailCircuitBreaker
fallbackUri: forward:/mail-service-fallback # Forwards request to this URI when the circuit is open
- id: mail
uri: ${MAIL_SERVICE_URL:http://host.docker.internal:8352}/
predicates:
- Path=/ailegorreta/mail/**
filters:
- RewritePath=/ailegorreta/mail/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: mailCircuitBreaker
fallbackUri: forward:/mail-service-fallback # Forwards request to this URI when the circuit is open
- id: order-service
uri: ${ORDER_SERVICE_URL:http://localhost:8530}/
predicates:
- Path=/ailegorreta/order-service/**
filters:
- RewritePath=/ailegorreta/order-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: orderCircuitBreaker
fallbackUri: forward:/order-service-fallback # Forwards request to this URI when the circuit is open
- id: order
uri: ${ORDER_SERVICE_URL:http://host.docker.internal:8530}/
predicates:
- Path=/ailegorreta/order/**
filters:
- RewritePath=/ailegorreta/order/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: orderCircuitBreaker
fallbackUri: forward:/order-service-fallback # Forwards request to this URI when the circuit is open
- id: expediente-service
uri: ${EXPEDIENTE_SERVICE_URL:http://localhost:8525}/
predicates:
- Path=/ailegorreta/expediente-service/**
filters:
- RewritePath=/ailegorreta/expediente-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: expedienteCircuitBreaker
fallbackUri: forward:/expediente-service-fallback # Forwards request to this URI when the circuit is open
- id: expediente
uri: ${EXPEDIENTE_SERVICE_URL:http://host.docker.internal:8525}/
predicates:
- Path=/ailegorreta/expediente/**
filters:
- RewritePath=/ailegorreta/expediente/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: expedienteCircuitBreaker
fallbackUri: forward:/expediente-service-fallback # Forwards request to this URI when the circuit is open
- id: bup-service
uri: ${BUP_SERVICE_URL:http://localhost:8520}/
predicates:
- Path=/ailegorreta/bup-service/**
filters:
- RewritePath=/ailegorreta/bup-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: bupCircuitBreaker
fallbackUri: forward:/bup-service-fallback # Forwards request to this URI when the circuit is open
- id: bup
uri: ${BUP_SERVICE_URL:http://host.docker.internal:8520}/
predicates:
- Path=/ailegorreta/bup/**
filters:
- RewritePath=/ailegorreta/bup/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: bupCircuitBreaker
fallbackUri: forward:/bup-service-fallback # Forwards request to this URI when the circuit is open
- id: cartera-demo
uri: ${CARTERA_DEMO_URL:http://localhost:8500}/
predicates:
- Path=/ailegorreta/cartera-demo/**
filters:
- RewritePath=/ailegorreta/cartera-demo/(?<path>.*), /$\{path}
- id: udf-service
uri: ${UDF_SERVICE_URL:http://localhost:8200}/
predicates:
- Path=/ailegorreta/udf-service/**
filters:
- RewritePath=/ailegorreta/udf-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: udfCircuitBreaker
fallbackUri: forward:/udf-service-fallback # Forwards request to this URI when the circuit is open
- id: udf
uri: ${UDF_SERVICE_URL:http://host.docker.internal:8200}/
predicates:
- Path=/ailegorreta/udf/**
filters:
- RewritePath=/ailegorreta/udf/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: udfCircuitBreaker
fallbackUri: forward:/udf-service-fallback # Forwards request to this URI when the circuit is open
- id: pref-service
uri: ${PREF_SERVICE_URL:http://localhost:8183}/
predicates:
- Path=/ailegorreta/pref-service/**
filters:
- RewritePath=/ailegorreta/pref-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: prefCircuitBreaker
fallbackUri: forward:/pref-service-fallback # Forwards request to this URI when the circuit is open
- id: pref
uri: ${PREF_SERVICE_URL:http://host.docker.internal:8183}/
predicates:
- Path=/ailegorreta/pref/**
filters:
- RewritePath=/ailegorreta/pref/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: prefCircuitBreaker
fallbackUri: forward:/pref-service-fallback # Forwards request to this URI when the circuit is open
- id: iam-service
uri: ${IAM_SERVICE_URL:http://localhost:8180}/
predicates:
- Path=/ailegorreta/iam-service/**
filters:
- RewritePath=/ailegorreta/iam-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: iamCircuitBreaker
fallbackUri: forward:/iam-service-fallback # Forwards request to this URI when the circuit is open
- id: iam
uri: ${IAM_SERVICE_URL:http://host.docker.internal:8180}/
predicates:
- Path=/ailegorreta/iam/**
filters:
- RewritePath=/ailegorreta/iam/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: iamCircuitBreaker
fallbackUri: forward:/iam-service-fallback # Forwards request to this URI when the circuit is open
- id: audit-service
uri: ${AUDIT_SERVICE_URL:http://localhost:8300}/
predicates:
- Path=/ailegorreta/audit-service/**
filters:
- RewritePath=/ailegorreta/audit-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: auditCircuitBreaker
fallbackUri: forward:/audit-service-fallback # Forwards request to this URI when the circuit is open
- id: audit
uri: ${AUDIT_SERVICE_URL:http://host.docker.internal:8300}/
predicates:
- Path=/ailegorreta/audit/**
filters:
- RewritePath=/ailegorreta/audit/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: auditCircuitBreaker
fallbackUri: forward:/audit-service-fallback # Forwards request to this URI when the circuit is open
- id: cache-service
uri: ${CACHE_SERVICE_URL:http://localhost:8351}/
predicates:
- Path=/ailegorreta/cache-service/**
filters:
- RewritePath=/ailegorreta/cache-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: cacheCircuitBreaker
fallbackUri: forward:/cache-service-fallback # Forwards request to this URI when the circuit is open
- id: cache
uri: ${CACHE_SERVICE_URL:http://host.docker.internal:8351}/
predicates:
- Path=/ailegorreta/cache/**
filters:
- RewritePath=/ailegorreta/cache/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: cacheCircuitBreaker
fallbackUri: forward:/cache-service-fallback # Forwards request to this URI when the circuit is open
- id: param-service
uri: ${PARAM_SERVICE_URL:http://localhost:8350}/
predicates:
- Path=/ailegorreta/param-service/**
filters:
- RewritePath=/ailegorreta/param-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: paramCircuitBreaker
fallbackUri: forward:/param-service-fallback # Forwards request to this URI when the circuit is open
- id: param
uri: ${PARAM_SERVICE_URL:http://host.docker.internal:8350}/
predicates:
- Path=/ailegorreta/param/**
filters:
- RewritePath=/ailegorreta/param/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: paramCircuitBreaker
fallbackUri: forward:/param-service-fallback # Forwards request to this URI when the circuit is open
- id: content-service
uri: ${CONTENT_SERVICE_URL:http://localhost:8370}/
predicates:
- Path=/ailegorreta/content-service/**
filters:
- RewritePath=/ailegorreta/content-service/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: contentCircuitBreaker
fallbackUri: forward:/content-service-fallback
- id: content
uri: ${CONTENT_SERVICE_URL:http://host.docker.internal:8370}/
predicates:
- Path=/ailegorreta/content/**
filters:
- RewritePath=/ailegorreta/content/(?<path>.*), /$\{path}
- name: CircuitBreaker
args:
name: contentCircuitBreaker
fallbackUri: forward:/content-service-fallback
- id: test # The route ID
uri: ${TEST_SERVICE_URL:http://host.docker.internal:8000}/
predicates:
- Path=/test/** # The predicate is a path to match
filters:
- RewritePath=/test/(?<path>.*), /$\{path} # Rewrite the path to eliminate '/test' path
- name: CircuitBreaker # Filter name for Circuit breaker
args:
name: testCircuitBreaker # Name of the circuit breaker
fallbackUri: forward:/test-service-fallback # Forwards request to this URI when the circuit is open
- id: test-service # The route ID
uri: ${TEST_SERVICE_URL:http://localhost:8000}/
predicates:
- Path=/test-service/** # The predicate is a path to match
filters:
- RewritePath=/test-service/(?<path>.*), /$\{path} # Rewrite the path to eliminate '/test-service' path
- name: CircuitBreaker # Filter name for Circuit breaker
args:
name: testLongCircuitBreaker # Name of the circuit breaker
fallbackUri: forward:/test-service-fallback # Forwards request to this URI when the circuit is open
- id: gateway # The route ID
uri: ${GATEWAY_SERVICE_URL:http://host.docker.internal:8072}/
predicates:
- Path=/gateway/** # The predicate is a path to match
filters:
- RewritePath=/gateway/(?<path>.*), /$\{path} # Rewrite the path to eliminate '/test' path
- id: gateway-service # The route ID
uri: ${GATEWAY_SERVICE_URL:http://localhost:8072}/
predicates:
- Path=/gateway-service/** # The predicate is a path to match
filters:
- RewritePath=/gateway-service/(?<path>.*), /$\{path} # Rewrite the path to eliminate '/test-service' path
# Testing what environment we are using
gateway:
greeting: "Welcome to gateway microservice from the config server, 'default configuration'."