[bitnami/argo-cd] fix: Use the right port name for livenessProbe. (#27253)

* fix: Use the right port name for livenessProbe.

Signed-off-by: Mathieu Laude <mathieu.laude@wescale.fr>

* Update CHANGELOG.md

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

* Update CHANGELOG.md

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

---------

Signed-off-by: Mathieu Laude <mathieu.laude@wescale.fr>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Signed-off-by: Miguel Ruiz <miruiz@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Miguel Ruiz <miruiz@vmware.com>
This commit is contained in:
mathieulaude
2024-07-08 12:41:38 +02:00
committed by GitHub
parent 680549f455
commit 516d67a0e6
3 changed files with 8 additions and 5 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 6.5.7 (2024-07-05)
## 6.5.8 (2024-07-08)
* [bitnami/argo-cd] Release 6.5.7 ([#27809](https://github.com/bitnami/charts/pull/27809))
* [bitnami/argo-cd] fix: Use the right port name for livenessProbe. ([#27253](https://github.com/bitnami/charts/pull/27253))
## <small>6.5.7 (2024-07-05)</small>
* [bitnami/argo-cd] Release 6.5.7 (#27809) ([cb5ab65](https://github.com/bitnami/charts/commit/cb5ab651c4ac02d80d6ab30e3d5b2ccda4e261ac)), closes [#27809](https://github.com/bitnami/charts/issues/27809)
## <small>6.5.6 (2024-07-05)</small>

View File

@@ -39,4 +39,4 @@ maintainers:
name: argo-cd
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/argo-cd
version: 6.5.7
version: 6.5.8

View File

@@ -118,11 +118,10 @@ spec:
{{- if .Values.applicationSet.customLivenessProbe }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.applicationSet.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.applicationSet.livenessProbe.enabled }}
livenessProbe:
livenessProbe:
httpGet:
path: /healthz
port: metrics
port: probe
initialDelaySeconds: {{ .Values.applicationSet.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.applicationSet.livenessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.applicationSet.livenessProbe.timeoutSeconds }}