Add health check endpoint

This commit is contained in:
Kasper Juul Hermansen 2022-05-10 11:56:27 +02:00
parent 9325619310
commit 0300f62dec
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23

View File

@ -22,13 +22,13 @@ spec:
- containerPort: 8000 - containerPort: 8000
livenessProbe: livenessProbe:
httpGet: httpGet:
path: / path: /download/healthz
port: 8000 port: 8000
initialDelaySeconds: 5 initialDelaySeconds: 5
timeoutSeconds: 5 timeoutSeconds: 5
readinessProbe: readinessProbe:
httpGet: httpGet:
path: / path: /download/healthz
port: 8000 port: 8000
initialDelaySeconds: 5 initialDelaySeconds: 5
timeoutSeconds: 5 timeoutSeconds: 5