-
Notifications
You must be signed in to change notification settings - Fork 1
/
application.yml
61 lines (61 loc) · 1.55 KB
/
application.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
spring:
cloud:
gateway:
routes:
- id: vets-service
uri: http://vets-service
predicates:
- Path=/api/vet/**
filters:
- StripPrefix=2
- id: visits-service
uri: http://visits-service
predicates:
- Path=/api/visit/**
filters:
- StripPrefix=2
- id: customers-service
uri: http://customers-service
predicates:
- Path=/api/customer/**
filters:
- StripPrefix=2
---
management:
health:
livenessstate:
enabled: true
readinessstate:
enabled: true
endpoints:
enabled-by-default: false
web:
base-path: "/manage"
exposure: # https://docs.spring.io/spring-boot/docs/2.6.3/reference/html/actuator.html#actuator.endpoints.exposing
include: "health,info,startup,env,mappings,metrics" # "*"
exclude: "beans"
endpoint:
health:
enabled: true
status:
http-mapping:
down: 503
fatal: 503
out-of-service: 503
group:
readiness:
include: "readinessState"
liveness:
include: "livenessState"
startup: # https://docs.spring.io/spring-boot/docs/2.6.6/reference/html/actuator.html#actuator.endpoints.kubernetes-probes
enabled: true
probes:
enabled: true
info:
enabled: true
env:
enabled: true
mappings:
enabled: true
server:
port: 8081