Forráskód Böngészése

[bitnami/mlflow] Use different liveness/readiness pending probes (part 2) (#26417)

* [bitnami/mlflow] Use different liveness/readiness probes (part 2)

Signed-off-by: David Gomez <dgomezleon@vmware.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

---------

Signed-off-by: David Gomez <dgomezleon@vmware.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
David Gomez 1 éve
szülő
commit
3b0ef3fcf2

+ 5 - 1
bitnami/mlflow/CHANGELOG.md

@@ -1,8 +1,12 @@
 # Changelog
 
+## 1.2.1 (2024-05-28)
+
+* [bitnami/mlflow] Use different liveness/readiness pending probes (part 2) ([#26417](https://github.com/bitnami/charts/pull/26417))
+
 ## 1.2.0 (2024-05-23)
 
-* [bitnami/mlflow] Use different liveness/readiness probes ([#26322](https://github.com/bitnami/charts/pull/26322))
+* [bitnami/mlflow] Use different liveness/readiness probes (#26322) ([5260087](https://github.com/bitnami/charts/commit/526008760457f8a9170be51d8ee644c20cc70a53)), closes [#26322](https://github.com/bitnami/charts/issues/26322)
 
 ## 1.1.0 (2024-05-21)
 

+ 1 - 1
bitnami/mlflow/Chart.yaml

@@ -43,4 +43,4 @@ name: mlflow
 sources:
 - https://github.com/bitnami/containers/tree/main/bitnami/mlflow
 - https://github.com/mlflow/mlflow
-version: 1.2.0
+version: 1.2.1

+ 5 - 2
bitnami/mlflow/templates/tracking/deployment.yaml

@@ -215,8 +215,11 @@ spec:
           livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.tracking.customLivenessProbe "context" $) | nindent 12 }}
           {{- else if .Values.tracking.livenessProbe.enabled }}
           livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.tracking.livenessProbe "enabled") "context" $) | nindent 12 }}
-            tcpSocket:
-              port: {{ include "mlflow.v0.tracking.portName" . }}
+            exec:
+              command:
+                - pgrep
+                - f
+                - mlflow.server
           {{- end }}
           {{- if .Values.tracking.customReadinessProbe }}
           readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.tracking.customReadinessProbe "context" $) | nindent 12 }}