Allow TLS configuration for Ingress (#119)
This commit is contained in:
parent
480c730725
commit
3fce11cdc2
3 changed files with 11 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ apiVersion: extensions/v1beta1
|
|||
kind: Ingress
|
||||
metadata:
|
||||
name: argocd-server
|
||||
labels:
|
||||
labels:
|
||||
app.kubernetes.io/name: {{ include "argo-cd.name" . }}
|
||||
helm.sh/chart: {{ include "argo-cd.chart" . }}
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
|
|
@ -26,4 +26,8 @@ spec:
|
|||
serviceName: argocd-server
|
||||
servicePort: https
|
||||
{{- end }}
|
||||
{{- if .Values.ingress.tls }}
|
||||
tls:
|
||||
{{ toYaml .Values.ingress.tls | indent 4 }}
|
||||
{{- end -}}
|
||||
{{- end }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue