feat(argo-cd): Make AWS ALB GRPC backend protocol version configurable (#909)

Signed-off-by: Sander van Schie <sandervanschie@gmail.com>
This commit is contained in:
Sander van Schie 2021-08-27 15:47:01 +02:00 committed by GitHub
parent 2fd39754de
commit 5c03c916be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 9 deletions

View file

@ -644,14 +644,15 @@ server:
labels: {}
ingressClassName: ""
## Service Type if isAWSALB is set to true
## Can be of type NodePort or ClusterIP depending on which mode you are
## are running. Instance mode needs type NodePort, IP mode needs type
## ClusterIP
## Ref: https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.2/how-it-works/#ingress-traffic
##
awsALB:
## Service Type if isAWSALB is set to true
## Can be of type NodePort or ClusterIP depending on which mode you are
## are running. Instance mode needs type NodePort, IP mode needs type
## ClusterIP
## Ref: https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.2/how-it-works/#ingress-traffic
serviceType: NodePort
# This tells AWS to send traffic from the ALB using HTTP2. Can use GRPC as well if you want to leverage GRPC specific features
backendProtocolVersion: HTTP2
## Argo Ingress.
## Hostnames must be provided if Ingress is enabled.