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>
pull/2486/head argo-cd-6.0.4
Sjouke de Vries 2024-02-09 12:45:54 +01:00 committed by GitHub
parent b1f9827b17
commit 3c29c6f543
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View File

@ -3,7 +3,7 @@ appVersion: v2.10.0
kubeVersion: ">=1.23.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 6.0.3
version: 6.0.4
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources:
@ -27,4 +27,4 @@ annotations:
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
artifacthub.io/changes: |
- kind: fixed
description: Fixed rendering of network policy when applicationset webhook is enabled
description: Also added extraHosts defined to the TLS hostnames

View File

@ -55,6 +55,11 @@ spec:
{{- if .Values.server.ingress.tls }}
- hosts:
- {{ .Values.server.ingress.hostname }}
{{- range .Values.server.ingress.extraHosts }}
{{- if .name }}
- {{ .name }}
{{- end }}
{{- end }}
secretName: argocd-server-tls
{{- end }}
{{- with .Values.server.ingress.extraTls }}