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:
parent
83f8b7f030
commit
884d1d1784
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user