feat: Allow argo-cd server service port names to be configured. (#332)

* Allow server service port names to be configured.

Allows to route traffic via istio to split gRPC from http

* Update Chart.yaml for argo-cd

* Bump Chart version to match PR orders
This commit is contained in:
Stefan Reimer 2020-05-04 20:18:56 +01:00 committed by GitHub
parent 47e9523da3
commit b71ff243d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

View file

@ -21,11 +21,11 @@ metadata:
spec:
type: {{ .Values.server.service.type }}
ports:
- name: http
- name: {{ .Values.server.service.servicePortHttpName }}
protocol: TCP
port: {{ .Values.server.service.servicePortHttp }}
targetPort: {{ .Values.server.name }}
- name: https
- name: {{ .Values.server.service.servicePortHttpsName }}
protocol: TCP
port: {{ .Values.server.service.servicePortHttps }}
targetPort: {{ .Values.server.name }}