diff --git a/apps/dozzle/deployment.yaml b/apps/dozzle/deployment.yaml index 7071b28..7ffbfab 100644 --- a/apps/dozzle/deployment.yaml +++ b/apps/dozzle/deployment.yaml @@ -38,6 +38,31 @@ spec: value: "X-Forwarded-Preferred-Username" - name: DOZZLE_NO_ANALYTICS value: "true" + startupProbe: + httpGet: + path: /healthcheck + port: 8080 + initialDelaySeconds: 5 + periodSeconds: 2 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 15 + readinessProbe: + httpGet: + path: /healthcheck + port: 8080 + periodSeconds: 5 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 2 + livenessProbe: + httpGet: + path: /healthcheck + port: 8080 + periodSeconds: 10 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 3 volumeMounts: - name: dozzle-data mountPath: /data