fix(argo-cd): Address ingress regression of PR #3081 (#3137)

Signed-off-by: Marco Maurer <mkilchhofer@users.noreply.github.com>
pull/2998/head argo-cd-7.7.17
Marco Maurer (-Kilchhofer) 2025-01-24 14:04:22 +01:00 committed by GitHub
parent 27ef4ecd7d
commit bf9830c670
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ appVersion: v2.13.3
kubeVersion: ">=1.25.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 7.7.16
version: 7.7.17
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources:
@ -26,5 +26,5 @@ annotations:
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
artifacthub.io/changes: |
- kind: added
description: Added conditional around argocd-tls-certs-cm.yaml helm creation
- kind: fixed
description: Address ingress regression of PR #3081, use toString before tpl function

View File

@ -14,7 +14,7 @@ metadata:
{{- with .Values.server.ingress.annotations }}
annotations:
{{- range $key, $value := . }}
{{ $key }}: {{ tpl $value $ | quote }}
{{ $key }}: {{ tpl (toString $value) $ | quote }}
{{- end }}
{{- end }}
spec: