fix(argo-cd): Fix Service configuration for Argo server (#2690)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
This commit is contained in:
parent
510261328f
commit
87f717656a
4 changed files with 44 additions and 36 deletions
|
|
@ -1972,18 +1972,22 @@ server:
|
|||
servicePortHttpName: http
|
||||
# -- Server service https port name, can be used to route traffic via istio
|
||||
servicePortHttpsName: https
|
||||
# -- Server service https port appProtocol. (should be upper case - i.e. HTTPS)
|
||||
# servicePortHttpsAppProtocol: HTTPS
|
||||
# -- Server service https port appProtocol
|
||||
## Ref: https://kubernetes.io/docs/concepts/services-networking/service/#application-protocol
|
||||
servicePortHttpsAppProtocol: ""
|
||||
# -- LoadBalancer will get created with the IP specified in this field
|
||||
loadBalancerIP: ""
|
||||
# -- Source IP ranges to allow access to service from
|
||||
## Ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
|
||||
loadBalancerSourceRanges: []
|
||||
# -- Server service external IPs
|
||||
externalIPs: []
|
||||
# -- Denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints
|
||||
externalTrafficPolicy: ""
|
||||
## Ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
|
||||
externalTrafficPolicy: Cluster
|
||||
# -- Used to maintain session affinity. Supports `ClientIP` and `None`
|
||||
sessionAffinity: ""
|
||||
## Ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
|
||||
sessionAffinity: None
|
||||
|
||||
## Server metrics service configuration
|
||||
metrics:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue