fix(dispatcher): liveness probe must use the container port
Container port is 8080 so ... the probes must use the same port
This commit is contained in:
parent
f1d621d4a9
commit
0dbd5dd551
|
@ -56,14 +56,14 @@ spec:
|
|||
readinessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: 80
|
||||
port: 8080
|
||||
initialDelaySeconds: 5
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 10
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: 80
|
||||
port: 8080
|
||||
initialDelaySeconds: 15
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 15
|
||||
|
|
Loading…
Reference in New Issue