fix(argo-cd): Add quotes on Ingress Host to allow wildcards (#1841)

* Add quotes on Ingress Host to allow wildcards

Signed-off-by: nicogl <nicogl@gmail.com>

* Update Chart.yaml

Signed-off-by: nicogl <nicogl@gmail.com>

---------

Signed-off-by: nicogl <nicogl@gmail.com>
This commit is contained in:
nicogl 2023-02-14 09:21:29 -03:00 committed by GitHub
parent a915e774a5
commit 4a56a4d7f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ appVersion: v2.6.1
kubeVersion: ">=1.22.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 5.20.4
version: 5.20.5
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources:
@ -24,4 +24,4 @@ dependencies:
annotations:
artifacthub.io/changes: |
- kind: fixed
description: Fixed invalid ApplicationSet progressive sync parameter
description: Fixed missing quotes on Ingress host

View file

@ -29,7 +29,7 @@ spec:
rules:
{{- if .Values.server.ingress.hosts }}
{{- range $host := .Values.server.ingress.hosts }}
- host: {{ $host }}
- host: {{ $host | quote }}
http:
paths:
{{- with $extraPaths }}