fix(argo-cd): Set type of service for gRPC as NodePort. (#861)

* fix: set service-grpc type as NodePort
Signed-off-by: Emanuel Oliveira <emanuelflp@gmail.com>

Signed-off-by: Emanuel Oliveira <emanuelolive@grupoboticario.com.br>

* docs: Adds changelog
Signed-off-by: Emanuel Oliveira <emanuelflp@gmail.com>

Signed-off-by: Emanuel Oliveira <emanuelolive@grupoboticario.com.br>

* chore: remove old changelog comment
Signed-off-by: Emanuel Oliveira <emanuelflp@gmail.com>

Signed-off-by: Emanuel Oliveira <emanuelolive@grupoboticario.com.br>
This commit is contained in:
Emanuel Oliveira 2021-08-09 05:58:02 -03:00 committed by GitHub
parent b862c6239f
commit 6bbcd833d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.0.5
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 3.11.2
version: 3.11.3
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: |
- "[Added]: Add server.service.sessionAffinity setting of the Service into account when deciding which backend Pod to use"
- "[Fix]: Set type of service for grpc as NodePort because this is the default of ALB ingress Controller"

View file

@ -20,5 +20,5 @@ spec:
selector:
{{- include "argo-cd.selectorLabels" (dict "context" . "name" .Values.server.name) | nindent 4 }}
sessionAffinity: None
type: ClusterIP
type: NodePort
{{- end -}}