34 lines
994 B
YAML
Executable File
34 lines
994 B
YAML
Executable File
{{- if .Values.ingress.enabled -}}
|
|
{{- $serviceName := include "couchdb.fullname" . -}}
|
|
{{- $servicePort := .Values.service.externalPort -}}
|
|
{{- $path := .Values.ingress.path | quote -}}
|
|
apiVersion: networking.k8s.io/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: {{ template "couchdb.fullname" . }}
|
|
labels:
|
|
app: {{ template "couchdb.name" . }}
|
|
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
annotations:
|
|
{{- range $key, $value := .Values.ingress.annotations }}
|
|
{{ $key }}: {{ $value | quote }}
|
|
{{- end }}
|
|
spec:
|
|
rules:
|
|
{{- range $host := .Values.ingress.hosts }}
|
|
- host: {{ $host }}
|
|
http:
|
|
paths:
|
|
- path: {{ $path }}
|
|
backend:
|
|
serviceName: {{ $serviceName }}
|
|
servicePort: {{ $servicePort }}
|
|
{{- end -}}
|
|
{{- if .Values.ingress.tls }}
|
|
tls:
|
|
{{ toYaml .Values.ingress.tls | indent 4 }}
|
|
{{- end -}}
|
|
{{- end -}}
|