From 97ca361a6a53ec8109a103ed50cf9cb197473fe6 Mon Sep 17 00:00:00 2001 From: Julio Morimoto Date: Fri, 3 Nov 2023 14:05:58 -0300 Subject: [PATCH] Change minio liveness probe to use native httpGet instead of curl. Fixes #12277 --- charts/budibase/templates/minio-service-deployment.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/charts/budibase/templates/minio-service-deployment.yaml b/charts/budibase/templates/minio-service-deployment.yaml index 41af2624bf..f98ecc139d 100644 --- a/charts/budibase/templates/minio-service-deployment.yaml +++ b/charts/budibase/templates/minio-service-deployment.yaml @@ -46,11 +46,9 @@ spec: image: minio/minio imagePullPolicy: "" livenessProbe: - exec: - command: - - curl - - -f - - http://localhost:9000/minio/health/live + httpGet: + path: /minio/health/live + port: 9000 failureThreshold: 3 periodSeconds: 30 timeoutSeconds: 20