diff --git a/charts/groombook/templates/ingress.yaml b/charts/groombook/templates/ingress.yaml new file mode 100644 index 0000000..36c1674 --- /dev/null +++ b/charts/groombook/templates/ingress.yaml @@ -0,0 +1,42 @@ +{{- if .Values.ingress.enabled }} +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: {{ include "groombook.fullname" . }} + labels: + {{- include "groombook.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if .Values.ingress.className }} + ingressClassName: {{ .Values.ingress.className }} + {{- end }} + {{- if .Values.ingress.tls }} + tls: + {{- toYaml .Values.ingress.tls | nindent 4 }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ .path }} + pathType: {{ .pathType }} + backend: + service: + {{- if eq .service "api" }} + name: {{ include "groombook.fullname" $ }}-api + port: + number: {{ $.Values.api.service.port }} + {{- else }} + name: {{ include "groombook.fullname" $ }}-web + port: + number: {{ $.Values.web.service.port }} + {{- end }} + {{- end }} + {{- end }} +{{- end }} +