29 lines
617 B
YAML
29 lines
617 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: dejo-node
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: deje-node
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /health/liveness
|
|
port: 8080
|
|
initialDelaySeconds: 3
|
|
periodSeconds: 5
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /health/readiness
|
|
port: 8080
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
startupProbe:
|
|
httpGet:
|
|
path: /health/startup
|
|
port: 8080
|
|
failureThreshold: 30
|
|
periodSeconds: 10
|
|
|