diff --git a/bitnami/drupal/Chart.lock b/bitnami/drupal/Chart.lock index 08e117b321..1ff7840a3a 100644 --- a/bitnami/drupal/Chart.lock +++ b/bitnami/drupal/Chart.lock @@ -1,9 +1,9 @@ dependencies: - name: mariadb repository: oci://registry-1.docker.io/bitnamicharts - version: 18.0.3 + version: 18.0.5 - name: common repository: oci://registry-1.docker.io/bitnamicharts version: 2.19.2 -digest: sha256:4528b6ec95332de31a435861d2e676c0267aaf44beefa2216f74d500bbd25ce8 -generated: "2024-05-13T20:27:12.613733681Z" +digest: sha256:c5470e186b8c675df045d2df334629fb8a47a53f87044bd4348c80105ca25eaf +generated: "2024-05-15T16:40:46.567361+02:00" diff --git a/bitnami/drupal/Chart.yaml b/bitnami/drupal/Chart.yaml index e35b2c3fcd..a07d7d08cc 100644 --- a/bitnami/drupal/Chart.yaml +++ b/bitnami/drupal/Chart.yaml @@ -40,4 +40,4 @@ maintainers: name: drupal sources: - https://github.com/bitnami/charts/tree/main/bitnami/drupal -version: 18.0.5 +version: 18.0.6 diff --git a/bitnami/drupal/README.md b/bitnami/drupal/README.md index 30ac9ad2e3..07c9c7f4cd 100644 --- a/bitnami/drupal/README.md +++ b/bitnami/drupal/README.md @@ -231,7 +231,6 @@ helm install my-release --set persistence.existingClaim=PVC_NAME oci://REGISTRY_ | `startupProbe.failureThreshold` | Failure threshold for startupProbe | `5` | | `startupProbe.successThreshold` | Success threshold for startupProbe | `1` | | `livenessProbe.enabled` | Enable livenessProbe | `true` | -| `livenessProbe.path` | Request path for livenessProbe | `/user/login` | | `livenessProbe.initialDelaySeconds` | Initial delay seconds for livenessProbe | `600` | | `livenessProbe.periodSeconds` | Period seconds for livenessProbe | `10` | | `livenessProbe.timeoutSeconds` | Timeout seconds for livenessProbe | `5` | diff --git a/bitnami/drupal/templates/deployment.yaml b/bitnami/drupal/templates/deployment.yaml index 57c5edb5cf..969d3e8fb8 100644 --- a/bitnami/drupal/templates/deployment.yaml +++ b/bitnami/drupal/templates/deployment.yaml @@ -284,8 +284,7 @@ spec: livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customLivenessProbe "context" $) | nindent 12 }} {{- else if .Values.livenessProbe.enabled }} livenessProbe: - httpGet: - path: {{ .Values.livenessProbe.path }} + tcpSocket: port: http initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.livenessProbe.periodSeconds }} diff --git a/bitnami/drupal/values.yaml b/bitnami/drupal/values.yaml index c6b7500d38..233319eb7f 100644 --- a/bitnami/drupal/values.yaml +++ b/bitnami/drupal/values.yaml @@ -378,13 +378,8 @@ startupProbe: failureThreshold: 5 successThreshold: 1 ## Configure extra options for liveness probe -## Drupal core exposes /user/login to unauthenticated requests, making it a good -## default liveness and readiness path. However, that may not always be the -## case. For example, if the image value is overridden to an image containing a -## module that alters that route, or an image that does not auto-install Drupal. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes ## @param livenessProbe.enabled Enable livenessProbe -## @param livenessProbe.path Request path for livenessProbe ## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe ## @param livenessProbe.periodSeconds Period seconds for livenessProbe ## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe @@ -393,7 +388,6 @@ startupProbe: ## livenessProbe: enabled: true - path: /user/login initialDelaySeconds: 600 periodSeconds: 10 timeoutSeconds: 5 @@ -401,7 +395,7 @@ livenessProbe: successThreshold: 1 ## Configure extra options for readiness probe ## Drupal core exposes /user/login to unauthenticated requests, making it a good -## default liveness and readiness path. However, that may not always be the +## default startup and readiness path. However, that may not always be the ## case. For example, if the image value is overridden to an image containing a ## module that alters that route, or an image that does not auto-install Drupal. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes