fix(argo-cd): add hostname of extraHost to tls hosts (#2485)
* fix(argo-cd): add hostname of extraHost to tls hosts Signed-off-by: Sjouke de Vries <info@sdvservices.nl> * fix(argo-cd): bump chart to 6.0.4 Signed-off-by: Sjouke de Vries <info@sdvservices.nl> * chore(argo-cd): update artifacthub.io/changes for 6.0.4 Signed-off-by: Sjouke de Vries <info@sdvservices.nl> --------- Signed-off-by: Sjouke de Vries <info@sdvservices.nl>
This commit is contained in:
parent
b1f9827b17
commit
3c29c6f543
2 changed files with 7 additions and 2 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.10.0
|
||||||
kubeVersion: ">=1.23.0-0"
|
kubeVersion: ">=1.23.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: 6.0.3
|
version: 6.0.4
|
||||||
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:
|
||||||
|
@ -27,4 +27,4 @@ annotations:
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: fixed
|
||||||
description: Fixed rendering of network policy when applicationset webhook is enabled
|
description: Also added extraHosts defined to the TLS hostnames
|
||||||
|
|
|
@ -55,6 +55,11 @@ spec:
|
||||||
{{- if .Values.server.ingress.tls }}
|
{{- if .Values.server.ingress.tls }}
|
||||||
- hosts:
|
- hosts:
|
||||||
- {{ .Values.server.ingress.hostname }}
|
- {{ .Values.server.ingress.hostname }}
|
||||||
|
{{- range .Values.server.ingress.extraHosts }}
|
||||||
|
{{- if .name }}
|
||||||
|
- {{ .name }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
secretName: argocd-server-tls
|
secretName: argocd-server-tls
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.server.ingress.extraTls }}
|
{{- with .Values.server.ingress.extraTls }}
|
||||||
|
|
Loading…
Reference in a new issue