helm-charts/bitwarden/templates/ingress.yaml

53 lines
1.5 KiB
YAML
Raw Normal View History

2021-01-17 01:09:41 +00:00
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "bitwarden.fullname" . -}}
{{- $svcPort := .Values.service.port -}}
{{- $websockets := .Values.bitwarden.websockets -}}
{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
apiVersion: networking.k8s.io/v1beta1
{{- else -}}
2021-01-17 01:09:41 +00:00
apiVersion: extensions/v1beta1
{{- end }}
2021-01-17 01:09:41 +00:00
kind: Ingress
metadata:
name: {{ $fullName }}
labels:
{{- include "bitwarden.labels" . | nindent 4 }}
{{- with .Values.ingress.annotations }}
2021-01-17 01:09:41 +00:00
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
2021-01-17 01:09:41 +00:00
spec:
{{- if .Values.ingress.tls }}
2021-01-17 01:09:41 +00:00
tls:
{{- range .Values.ingress.tls }}
2021-01-17 01:09:41 +00:00
- hosts:
{{- range .hosts }}
2021-01-17 01:09:41 +00:00
- {{ . | quote }}
{{- end }}
2021-01-17 01:09:41 +00:00
secretName: {{ .secretName }}
{{- end }}
2021-01-17 01:09:41 +00:00
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: {{ .host | quote }}
2021-01-17 01:09:41 +00:00
http:
paths:
{{- range .paths }}
- path: {{ . }}
2021-01-17 01:09:41 +00:00
backend:
serviceName: {{ $fullName }}
servicePort: {{ $svcPort }}
{{- if $websockets.enabled }}
- path: {{ . | trimSuffix "/" }}/notifications/hub
backend:
serviceName: {{ $fullName }}
servicePort: {{ $websockets.port }}
- path: {{ . | trimSuffix "/" }}/notifications/hub/negotiate
backend:
serviceName: {{ $fullName }}
servicePort: {{ $svcPort}}
{{- end }}
{{- end }}
{{- end }}
2021-01-17 01:09:41 +00:00
{{- end }}