Added option to disable the HTTPS service port (GKE)
Signed-off-by: Marijn Blom <marijn@mainblades.com> Signed-off-by: MarijnB <marijn@mainblades.com>
This commit is contained in:
parent
f7b5090efb
commit
d74225c4f6
3 changed files with 8 additions and 4 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.14.2
|
||||||
kubeVersion: ">=1.25.0-0"
|
kubeVersion: ">=1.25.0-0"
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 7.8.2
|
version: 7.8.3
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -26,5 +26,5 @@ annotations:
|
||||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: added
|
||||||
description: Create ServiceMonitor for dex only if dex is enabled
|
description: Option to disable the HTTPS service port
|
||||||
|
|
|
@ -44,6 +44,7 @@ spec:
|
||||||
{{- if eq .Values.server.service.type "NodePort" }}
|
{{- if eq .Values.server.service.type "NodePort" }}
|
||||||
nodePort: {{ .Values.server.service.nodePortHttp }}
|
nodePort: {{ .Values.server.service.nodePortHttp }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.server.service.servicePortHttpsEnabled }}
|
||||||
- name: {{ .Values.server.service.servicePortHttpsName }}
|
- name: {{ .Values.server.service.servicePortHttpsName }}
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
port: {{ .Values.server.service.servicePortHttps }}
|
port: {{ .Values.server.service.servicePortHttps }}
|
||||||
|
@ -56,4 +57,4 @@ spec:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
selector:
|
selector:
|
||||||
{{- include "argo-cd.selectorLabels" (dict "context" . "name" .Values.server.name) | nindent 4 }}
|
{{- include "argo-cd.selectorLabels" (dict "context" . "name" .Values.server.name) | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
|
|
|
@ -2141,6 +2141,9 @@ server:
|
||||||
# -- Server service https port appProtocol
|
# -- Server service https port appProtocol
|
||||||
## Ref: https://kubernetes.io/docs/concepts/services-networking/service/#application-protocol
|
## Ref: https://kubernetes.io/docs/concepts/services-networking/service/#application-protocol
|
||||||
servicePortHttpsAppProtocol: ""
|
servicePortHttpsAppProtocol: ""
|
||||||
|
# -- Enable the HTTPS service port (disable for GKE ingress)
|
||||||
|
## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#creating-a-service
|
||||||
|
servicePortHttpsEnabled: true
|
||||||
# -- The class of the load balancer implementation
|
# -- The class of the load balancer implementation
|
||||||
loadBalancerClass: ""
|
loadBalancerClass: ""
|
||||||
# -- LoadBalancer will get created with the IP specified in this field
|
# -- LoadBalancer will get created with the IP specified in this field
|
||||||
|
|
Loading…
Reference in a new issue