feat: add httpGet type for readiness and liveness probes in authentication, centralStorage, content, notification, and payment services

Signed-off-by: zhenyus <zhenyus@mathmast.com>
This commit is contained in:
zhenyus 2025-03-17 21:38:09 +08:00
parent 83f8b7f030
commit 884d1d1784
5 changed files with 10 additions and 0 deletions

View File

@ -23,6 +23,7 @@ authentication:
memory: 128Mi
probes:
readiness:
type: httpGet
config:
path: /api/_/readyz
port: 8004
@ -33,6 +34,7 @@ authentication:
failureThreshold: 3
terminationGracePeriodSeconds: 30
liveness:
type: httpGet
config:
path: /api/_/livez
port: 8004

View File

@ -23,6 +23,7 @@ centralStorage:
memory: 512Mi
probes:
readiness:
type: httpGet
config:
path: /api/_/readyz
port: 8005
@ -33,6 +34,7 @@ centralStorage:
failureThreshold: 3
terminationGracePeriodSeconds: 30
liveness:
type: httpGet
config:
path: /api/_/livez
port: 8005

View File

@ -23,6 +23,7 @@ content:
memory: 512Mi
probes:
readiness:
type: httpGet
config:
path: /api/_/readyz
port: 8013
@ -33,6 +34,7 @@ content:
failureThreshold: 3
terminationGracePeriodSeconds: 30
liveness:
type: httpGet
config:
path: /api/_/livez
port: 8013

View File

@ -23,6 +23,7 @@ notification:
memory: 128Mi
probes:
readiness:
type: httpGet
config:
path: /api/_/readyz
port: 8003
@ -33,6 +34,7 @@ notification:
failureThreshold: 3
terminationGracePeriodSeconds: 30
liveness:
type: httpGet
config:
path: /api/_/livez
port: 8003

View File

@ -23,6 +23,7 @@ payment:
memory: 256Mi
probes:
readiness:
type: httpGet
config:
path: /api/_/readyz
port: 8006
@ -33,6 +34,7 @@ payment:
failureThreshold: 3
terminationGracePeriodSeconds: 30
liveness:
type: httpGet
config:
path: /api/_/livez
port: 8006