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:
parent
a915e774a5
commit
4a56a4d7f0
2 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.6.1
|
||||||
kubeVersion: ">=1.22.0-0"
|
kubeVersion: ">=1.22.0-0"
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 5.20.4
|
version: 5.20.5
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -24,4 +24,4 @@ dependencies:
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: fixed
|
||||||
description: Fixed invalid ApplicationSet progressive sync parameter
|
description: Fixed missing quotes on Ingress host
|
||||||
|
|
|
@ -29,7 +29,7 @@ spec:
|
||||||
rules:
|
rules:
|
||||||
{{- if .Values.server.ingress.hosts }}
|
{{- if .Values.server.ingress.hosts }}
|
||||||
{{- range $host := .Values.server.ingress.hosts }}
|
{{- range $host := .Values.server.ingress.hosts }}
|
||||||
- host: {{ $host }}
|
- host: {{ $host | quote }}
|
||||||
http:
|
http:
|
||||||
paths:
|
paths:
|
||||||
{{- with $extraPaths }}
|
{{- with $extraPaths }}
|
||||||
|
|
Loading…
Reference in a new issue