[bitnami/deepspeed] Use different liveness/readiness probes (part 2) (#26168)

Signed-off-by: David Gomez <dgomezleon@vmware.com>
This commit is contained in:
David Gomez
2024-05-21 18:00:34 +02:00
committed by GitHub
parent ef66c18283
commit a2bb3bdb5f
4 changed files with 11 additions and 5 deletions

View File

@@ -1,8 +1,13 @@
# Changelog
## 2.1.1 (2024-05-21)
* [bitnami/deepspeed] Use different liveness/readiness probes (part 2) ([#26168](https://github.com/bitnami/charts/pulls/26168))
## 2.1.0 (2024-05-21)
* [bitnami/deepspeed] feat: :sparkles: :lock: Add warning when original images are replaced ([#26192](https://github.com/bitnami/charts/pulls/26192))
* [bitnami/*] ci: :construction_worker: Add tag and changelog support (#25359) ([91c707c](https://github.com/bitnami/charts/commit/91c707c)), closes [#25359](https://github.com/bitnami/charts/issues/25359)
* [bitnami/deepspeed] feat: :sparkles: :lock: Add warning when original images are replaced (#26192) ([309aec1](https://github.com/bitnami/charts/commit/309aec1)), closes [#26192](https://github.com/bitnami/charts/issues/26192)
## <small>2.0.6 (2024-05-21)</small>

View File

@@ -4,3 +4,4 @@ dependencies:
version: 2.19.3
digest: sha256:de997835d9ce9a9deefc2d70d8c62b11aa1d1a76ece9e86a83736ab9f930bf4d
generated: "2024-05-21T13:33:30.620842827+02:00"

View File

@@ -35,4 +35,5 @@ name: deepspeed
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/deepspeed
- https://github.com/bitnami/charts/tree/main/bitnami/pytorch
version: 2.1.0
version: 2.1.1

View File

@@ -158,9 +158,8 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.client.livenessProbe "enabled") "context" $) | nindent 12 }}
exec:
command:
- python
- -c
- import torch; torch.__version__
- deepspeed
- --help
{{- end }}
{{- if .Values.client.customReadinessProbe }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.client.customReadinessProbe "context" $) | nindent 12 }}