Option to set appProtocol for Argocd server https service port
Signed-off-by: Milos <milos.hauser@pricefx.com>
This commit is contained in:
parent
633954386f
commit
4bc2834e0c
3 changed files with 7 additions and 2 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.6.7
|
|||
kubeVersion: ">=1.22.0-0"
|
||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 5.28.2
|
||||
version: 5.28.3
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
sources:
|
||||
|
@ -24,4 +24,4 @@ dependencies:
|
|||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- kind: added
|
||||
description: Add log format and log level to dex.
|
||||
description: Option to set appProtocol for Argocd server https service port
|
||||
|
|
|
@ -30,6 +30,9 @@ spec:
|
|||
{{- if eq .Values.server.service.type "NodePort" }}
|
||||
nodePort: {{ .Values.server.service.nodePortHttps }}
|
||||
{{- end }}
|
||||
{{- with .Values.server.service.servicePortHttpsAppProtocol }}
|
||||
appProtocol: {{ . }}
|
||||
{{- end }}
|
||||
selector:
|
||||
{{- include "argo-cd.selectorLabels" (dict "context" . "name" .Values.server.name) | nindent 4 }}
|
||||
{{- if eq .Values.server.service.type "LoadBalancer" }}
|
||||
|
|
|
@ -1765,6 +1765,8 @@ 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
|
||||
# -- LoadBalancer will get created with the IP specified in this field
|
||||
loadBalancerIP: ""
|
||||
# -- Source IP ranges to allow access to service from
|
||||
|
|
Loading…
Reference in a new issue