Add homeassistant app.

This commit is contained in:
2025-08-16 07:55:10 -07:00
parent c2f8f7e6a0
commit a663746686
8 changed files with 204 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: homeassistant-public
# annotations:
# external-dns.alpha.kubernetes.io/target: "{{ .apps.homeassistant.domain }}"
# external-dns.alpha.kubernetes.io/cloudflare-proxied: "false"
spec:
rules:
- host: "{{ .apps.homeassistant.domain }}"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: homeassistant
port:
number: 8123
tls:
- secretName: "{{ .apps.homeassistant.tlsKey }}"
hosts:
- "{{ .apps.homeassistant.domain }}"