diff --git a/bitnami/opencart/Chart.lock b/bitnami/opencart/Chart.lock index f30a1a57f20627..4a4e97f9bc89a7 100644 --- a/bitnami/opencart/Chart.lock +++ b/bitnami/opencart/Chart.lock @@ -1,9 +1,9 @@ dependencies: - name: mariadb repository: oci://registry-1.docker.io/bitnamicharts - version: 18.0.5 + version: 18.0.6 - name: common repository: oci://registry-1.docker.io/bitnamicharts version: 2.19.2 -digest: sha256:c5470e186b8c675df045d2df334629fb8a47a53f87044bd4348c80105ca25eaf -generated: "2024-05-18T02:18:04.4388818Z" +digest: sha256:c47e6893bd32647cb5b1ace19e702087fa6e5301cd7e7b37eae4313afa327e2c +generated: "2024-05-20T09:19:25.860727+02:00" diff --git a/bitnami/opencart/Chart.yaml b/bitnami/opencart/Chart.yaml index fe3d1f0d6bc0aa..f349763ffb611a 100644 --- a/bitnami/opencart/Chart.yaml +++ b/bitnami/opencart/Chart.yaml @@ -38,4 +38,4 @@ maintainers: name: opencart sources: - https://github.com/bitnami/charts/tree/main/bitnami/opencart -version: 18.0.4 +version: 18.0.5 diff --git a/bitnami/opencart/README.md b/bitnami/opencart/README.md index 3dfb2aff84bfb0..1ecc7f34082fef 100644 --- a/bitnami/opencart/README.md +++ b/bitnami/opencart/README.md @@ -227,7 +227,6 @@ helm install my-release --set persistence.existingClaim=PVC_NAME oci://REGISTRY_ | `startupProbe.failureThreshold` | Failure threshold for startupProbe | `6` | | `startupProbe.successThreshold` | Success threshold for startupProbe | `1` | | `livenessProbe.enabled` | Enable livenessProbe | `true` | -| `livenessProbe.path` | Request path for livenessProbe | `/administration/` | | `livenessProbe.initialDelaySeconds` | Initial delay seconds for livenessProbe | `120` | | `livenessProbe.periodSeconds` | Period seconds for livenessProbe | `10` | | `livenessProbe.timeoutSeconds` | Timeout seconds for livenessProbe | `5` | diff --git a/bitnami/opencart/templates/deployment.yaml b/bitnami/opencart/templates/deployment.yaml index 9e4f6d206e9cbb..5633f4c4f1b798 100644 --- a/bitnami/opencart/templates/deployment.yaml +++ b/bitnami/opencart/templates/deployment.yaml @@ -295,12 +295,8 @@ 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 - httpHeaders: - - name: Host - value: {{ include "opencart.host" . | quote }} initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.livenessProbe.periodSeconds }} timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }} diff --git a/bitnami/opencart/values.yaml b/bitnami/opencart/values.yaml index 13420d521a199d..22dc6219badbed 100644 --- a/bitnami/opencart/values.yaml +++ b/bitnami/opencart/values.yaml @@ -364,7 +364,6 @@ startupProbe: ## Configure extra options for liveness probe ## 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 @@ -373,7 +372,6 @@ startupProbe: ## livenessProbe: enabled: true - path: /administration/ initialDelaySeconds: 120 periodSeconds: 10 timeoutSeconds: 5