From 1ceb47ff76984ac0504846a4c0c424cae272dde8 Mon Sep 17 00:00:00 2001 From: Mathieu Parent Date: Thu, 7 Oct 2021 00:12:44 +0200 Subject: [PATCH] feat(argo-cd): Use Istio port name naming convention (#956) See https://istio.io/latest/docs/ops/configuration/traffic-management/protocol-selection/#explicit-protocol-selection Signed-off-by: Mathieu Parent Co-authored-by: Marco Kilchhofer --- charts/argo-cd/Chart.yaml | 4 ++-- charts/argo-cd/templates/redis/service.yaml | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/charts/argo-cd/Chart.yaml b/charts/argo-cd/Chart.yaml index 4a94e1d0..0bd13278 100644 --- a/charts/argo-cd/Chart.yaml +++ b/charts/argo-cd/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.1.3 description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes. name: argo-cd -version: 3.23.1 +version: 3.24.0 home: https://github.com/argoproj/argo-helm icon: https://argoproj.github.io/argo-cd/assets/logo.png keywords: @@ -21,4 +21,4 @@ dependencies: condition: redis-ha.enabled annotations: artifacthub.io/changes: | - - "[Changed]: Upgrade argocd to v2.1.3" + - "[Added]: Use Istio port name naming convention for redis" diff --git a/charts/argo-cd/templates/redis/service.yaml b/charts/argo-cd/templates/redis/service.yaml index e02e33f2..70b80c06 100644 --- a/charts/argo-cd/templates/redis/service.yaml +++ b/charts/argo-cd/templates/redis/service.yaml @@ -15,8 +15,9 @@ metadata: {{- end }} spec: ports: - - port: {{ .Values.redis.servicePort }} + - name: redis + port: {{ .Values.redis.servicePort }} targetPort: {{ .Values.redis.containerPort }} selector: {{- include "argo-cd.selectorLabels" (dict "context" . "name" .Values.redis.name) | nindent 4 }} -{{- end }} \ No newline at end of file +{{- end }}