From f0d46927873f273f115583ab0e5cc05c87122685 Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Wed, 7 Jan 2026 10:27:22 +0100 Subject: [PATCH] fixed deployment --- zipline-system/zipline.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/zipline-system/zipline.yaml b/zipline-system/zipline.yaml index f152b73..bcc693f 100644 --- a/zipline-system/zipline.yaml +++ b/zipline-system/zipline.yaml @@ -88,6 +88,22 @@ spec: volumeMounts: - name: zipline-data mountPath: /zipline/uploads + readinessProbe: + httpGet: + path: /api/healthcheck + port: 3000 + initialDelaySeconds: 15 + periodSeconds: 10 + livenessProbe: + httpGet: + path: /api/healthcheck + port: 3000 + initialDelaySeconds: 45 + periodSeconds: 20 + volumes: + - name: zipline-data + persistentVolumeClaim: + claimName: zipline-data --- apiVersion: v1 kind: Service