Add Helm chart scaffold with Chart.yaml, values.yaml, and helpers #132

Merged
groombook-engineer[bot] merged 16 commits from helm-chart-scaffold into main 2026-03-27 18:36:29 +00:00
Showing only changes of commit 3481faedf2 - Show all commits
+42
View File
@@ -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 }}