[bitnami/jupyterhub] Remove sleep probes (#26414)

* [bitnami/jupyterhub] Remove sleep probes

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>
This commit is contained in:
David Gomez
2024-05-24 15:08:50 +00:00
committed by GitHub
co-authored by Bitnami Containers
parent 69856e985f
commit 1b3cbb1a43
5 changed files with 7 additions and 81 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
# Changelog
## 7.1.1 (2024-05-22)
## 7.1.2 (2024-05-24)
* [bitnami/jupyterhub] Use different liveness/readiness probes ([#26348](https://github.com/bitnami/charts/pull/26348))
* [bitnami/jupyterhub] Remove sleep probes ([#26414](https://github.com/bitnami/charts/pull/26414))
## <small>7.1.1 (2024-05-23)</small>
* [bitnami/jupyterhub] Use different liveness/readiness probes (#26348) ([9268744](https://github.com/bitnami/charts/commit/9268744f8ad9474a22c2c263a303730aa7d8f0af)), closes [#26348](https://github.com/bitnami/charts/issues/26348)
## 7.1.0 (2024-05-21)
+1 -1
View File
@@ -37,4 +37,4 @@ maintainers:
name: jupyterhub
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub
version: 7.1.1
version: 7.1.2
-18
View File
@@ -658,24 +658,6 @@ There are cases where you may want to deploy extra objects, such a ConfigMap con
| `imagePuller.extraEnvVars` | Add extra environment variables to the ImagePuller container | `[]` |
| `imagePuller.extraEnvVarsCM` | Name of existing ConfigMap containing extra env vars | `""` |
| `imagePuller.extraEnvVarsSecret` | Name of existing Secret containing extra env vars | `""` |
| `imagePuller.livenessProbe.enabled` | Enable livenessProbe on ImagePuller containers | `true` |
| `imagePuller.livenessProbe.initialDelaySeconds` | Initial delay seconds for livenessProbe | `1` |
| `imagePuller.livenessProbe.periodSeconds` | Period seconds for livenessProbe | `10` |
| `imagePuller.livenessProbe.timeoutSeconds` | Timeout seconds for livenessProbe | `3` |
| `imagePuller.livenessProbe.failureThreshold` | Failure threshold for livenessProbe | `30` |
| `imagePuller.livenessProbe.successThreshold` | Success threshold for livenessProbe | `1` |
| `imagePuller.readinessProbe.enabled` | Enable readinessProbe on ImagePuller containers | `true` |
| `imagePuller.readinessProbe.initialDelaySeconds` | Initial delay seconds for readinessProbe | `1` |
| `imagePuller.readinessProbe.periodSeconds` | Period seconds for readinessProbe | `10` |
| `imagePuller.readinessProbe.timeoutSeconds` | Timeout seconds for readinessProbe | `3` |
| `imagePuller.readinessProbe.failureThreshold` | Failure threshold for readinessProbe | `30` |
| `imagePuller.readinessProbe.successThreshold` | Success threshold for readinessProbe | `1` |
| `imagePuller.startupProbe.enabled` | Enable startupProbe on ImagePuller containers | `false` |
| `imagePuller.startupProbe.initialDelaySeconds` | Initial delay seconds for startupProbe | `1` |
| `imagePuller.startupProbe.periodSeconds` | Period seconds for startupProbe | `10` |
| `imagePuller.startupProbe.timeoutSeconds` | Timeout seconds for startupProbe | `3` |
| `imagePuller.startupProbe.failureThreshold` | Failure threshold for startupProbe | `30` |
| `imagePuller.startupProbe.successThreshold` | Success threshold for startupProbe | `1` |
| `imagePuller.customStartupProbe` | Override default startup probe | `{}` |
| `imagePuller.customLivenessProbe` | Override default liveness probe | `{}` |
| `imagePuller.customReadinessProbe` | Override default readiness probe | `{}` |
@@ -130,30 +130,12 @@ spec:
{{- end }}
{{- if .Values.imagePuller.customStartupProbe }}
startupProbe: {{- include "common.tplvalues.render" (dict "value" .Values.imagePuller.customStartupProbe "context" $) | nindent 12 }}
{{- else if .Values.imagePuller.startupProbe.enabled }}
startupProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.proxy.startupProbe "enabled") "context" $) | nindent 12 }}
exec:
command:
- pgrep
- sleep
{{- end }}
{{- if .Values.imagePuller.customLivenessProbe }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.imagePuller.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.imagePuller.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.proxy.livenessProbe "enabled") "context" $) | nindent 12 }}
exec:
command:
- pgrep
- sleep
{{- end }}
{{- if .Values.imagePuller.customReadinessProbe }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.imagePuller.customReadinessProbe "context" $) | nindent 12 }}
{{- else if .Values.imagePuller.readinessProbe.enabled }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.proxy.readinessProbe "enabled") "context" $) | nindent 12 }}
exec:
command:
- pgrep
- sleep
{{- end }}
{{- if .Values.imagePuller.extraVolumeMounts }}
volumeMounts:
-42
View File
@@ -1358,48 +1358,6 @@ imagePuller:
## @param imagePuller.extraEnvVarsSecret Name of existing Secret containing extra env vars
##
extraEnvVarsSecret: ""
## @param imagePuller.livenessProbe.enabled Enable livenessProbe on ImagePuller containers
## @param imagePuller.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param imagePuller.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param imagePuller.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param imagePuller.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param imagePuller.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 1
periodSeconds: 10
failureThreshold: 30
timeoutSeconds: 3
successThreshold: 1
## @param imagePuller.readinessProbe.enabled Enable readinessProbe on ImagePuller containers
## @param imagePuller.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param imagePuller.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param imagePuller.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param imagePuller.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param imagePuller.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 1
periodSeconds: 10
failureThreshold: 30
timeoutSeconds: 3
successThreshold: 1
## @param imagePuller.startupProbe.enabled Enable startupProbe on ImagePuller containers
## @param imagePuller.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param imagePuller.startupProbe.periodSeconds Period seconds for startupProbe
## @param imagePuller.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param imagePuller.startupProbe.failureThreshold Failure threshold for startupProbe
## @param imagePuller.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 1
periodSeconds: 10
failureThreshold: 30
timeoutSeconds: 3
successThreshold: 1
## @param imagePuller.customStartupProbe Override default startup probe
##
customStartupProbe: {}