Adding Helm chart

This commit is contained in:
Jansen Fuller
2026-04-30 22:54:31 -06:00
committed by Dustin J. Mitchell
parent dd1b87dad5
commit b98c87798c
13 changed files with 454 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{{- if .Values.httpRoute.enabled }}
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: {{ include "taskchampion-sync-server.fullname" . }}
labels:
{{- include "taskchampion-sync-server.labels" . | nindent 4 }}
spec:
parentRefs:
- name: {{ .Values.httpRoute.gateway }}
{{- if .Values.httpRoute.host }}
hostnames:
- {{ .Values.httpRoute.host }}
{{- end }}
rules:
- matches:
- path:
type: PathPrefix
value: {{ .Values.httpRoute.path }}
backendRefs:
- name: {{ include "taskchampion-sync-server.fullname" . }}
port: {{ .Values.httpRoute.port }}
{{- end }}