fix(argo-cd): Fixed default tls hosts for grpc ingress endpoint (#2580)

* Fixed default tls hosts for grpc ingress endpoint

Signed-off-by: Goeran Poehner <goeran.poehner@gmail.com>

* Increased chart version

Signed-off-by: Goeran Poehner <goeran.poehner@gmail.com>

* Added changelog entry

Signed-off-by: Goeran Poehner <goeran.poehner@gmail.com>

* Updated changelog

Signed-off-by: Goeran Poehner <goeran.poehner@gmail.com>

---------

Signed-off-by: Goeran Poehner <goeran.poehner@gmail.com>
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
Co-authored-by: Petr Drastil <petr.drastil@gmail.com>
This commit is contained in:
Göran Pöhner 2024-03-12 00:08:20 +01:00 committed by GitHub
parent b9615e451c
commit 6a58945969
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.10.2
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.7.0 version: 6.7.1
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:
@ -26,5 +26,5 @@ annotations:
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252 fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
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: Added - kind: changed
description: Support for existing Secret for ArgoCD Notifications, and ability to set its name. description: Fixed a bug for TLS host value in GRPC ingress endpoint

View file

@ -53,7 +53,7 @@ spec:
tls: tls:
{{- if .Values.server.ingressGrpc.tls }} {{- if .Values.server.ingressGrpc.tls }}
- hosts: - hosts:
- {{ $hostname }} - {{ .Values.server.ingressGrpc.hostname | default $hostname }}
secretName: argocd-server-grpc-tls secretName: argocd-server-grpc-tls
{{- end }} {{- end }}
{{- with .Values.server.ingressGrpc.extraTls }} {{- with .Values.server.ingressGrpc.extraTls }}