From 435661ae3884478d61328ad59d0ad5a6c43f5b43 Mon Sep 17 00:00:00 2001 From: Username Date: Sun, 18 Jan 2026 16:54:59 +0100 Subject: [PATCH] kubernetes: update harbor url and health probe paths - use harbor.mymx.me instead of old internal IP - fix liveness/readiness probes to use /health endpoint --- kubernetes.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubernetes.yaml b/kubernetes.yaml index 6d57de0..f9f4668 100644 --- a/kubernetes.yaml +++ b/kubernetes.yaml @@ -59,7 +59,7 @@ spec: - name: harbor-creds containers: - name: flaskpaste - image: 192.168.122.154:30443/library/flaskpaste:latest + image: harbor.mymx.me/library/flaskpaste:latest ports: - containerPort: 5000 protocol: TCP @@ -78,14 +78,14 @@ spec: cpu: "250m" livenessProbe: httpGet: - path: / + path: /health port: 5000 initialDelaySeconds: 10 periodSeconds: 30 timeoutSeconds: 5 readinessProbe: httpGet: - path: / + path: /health port: 5000 initialDelaySeconds: 5 periodSeconds: 10