initial: homelab-services app-of-apps, ignis service

This commit is contained in:
2026-08-03 00:38:30 +07:00
commit 57dcecedb7
10 changed files with 286 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{{- if .Values.httpRoute.enabled }}
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: {{ .Release.Name }}
# No built-in auth in Ignis itself — LAN-only exposure, same tradeoff
# already accepted for Vault in cluster-platform.
spec:
parentRefs:
- name: envoy-gateway
namespace: envoy-gateway-system
hostnames:
- {{ .Values.httpRoute.hostname | quote }}
rules:
- matches:
- path:
type: PathPrefix
value: /
backendRefs:
- name: {{ .Release.Name }}
port: {{ .Values.service.port }}
{{- end }}