aboutsummaryrefslogtreecommitdiffstats
path: root/deployments/helm/onap4k8s/charts/common/templates/_ingress.tpl
blob: aeae726ede6f31e646d1e2a23ac61a00062f3d22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{{- define "ingress.config.port" -}}
{{- if .Values.ingress -}}
{{- if .Values.ingress.service -}}
{{- range .Values.ingress.service }}
        - path: {{ .path }}
          backend:
            serviceName: {{ .name }}
            servicePort: {{ .port }}
{{- end }}
{{- else -}}
         - path: {{ printf "/%s" .Chart.Name }}
           backend:
             serviceName: {{ .Chart.Name }}
             servicePort: {{ .Values.service.externalPort }}
{{- end -}}
{{- end -}}
{{- end -}}


{{- define "ingress.config.annotations" -}}
{{- if .Values.ingress -}}
{{- if .Values.ingress.annotations -}}
{{ toYaml .Values.ingress.annotations | indent 4 | trim }}
{{- end -}}
{{- end -}}
{{- end -}}


{{- define "common.ingress" -}}
{{- if .Values.ingress -}}
{{- if .Values.ingress.enabled -}}
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
  name: {{ include "common.fullname" . }}-ingress
  annotations:
    {{ include "ingress.config.annotations" . }}
  labels:
    app: {{ .Chart.Name }}
    chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
    release: {{ .Release.Name }}
    heritage: {{ .Release.Service }}
spec:
  rules:
  - http:
      paths:
         {{- include "ingress.config.port" . }}
{{- if .Values.ingress.tls }}
  tls:
{{ toYaml .Values.ingress.tls | indent 4 }}
  {{- end -}}
{{- end -}}
{{- end -}}
{{- end -}}