Files
trebuchet/charts/hightower/templates/router-service.yaml
T
Chris Farhood 03702ff625 feat: add Helm chart and release workflow
Adds a Helm chart under charts/hightower/ as an alternative to the
Flux/Kustomize deployment. Distributed via GitHub Pages (gh-pages branch).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-23 08:20:44 -04:00

15 lines
373 B
YAML

{{- if .Values.router.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "hightower.router.fullname" . }}
labels:
{{- include "hightower.labels" . | nindent 4 }}
spec:
selector:
{{- include "hightower.router.selectorLabels" . | nindent 4 }}
ports:
- port: {{ .Values.router.port }}
targetPort: {{ .Values.router.port }}
{{- end }}