23 lines
515 B
YAML
23 lines
515 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: home-assistant
|
|
namespace: home-assistant
|
|
annotations:
|
|
kubernetes.io/ingress.class: nginx
|
|
spec:
|
|
rules:
|
|
- host: home.apps.undercloud.dev
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: home-assistant
|
|
port:
|
|
number: 8123
|
|
tls:
|
|
- hosts:
|
|
- home.apps.undercloud.dev
|
|
secretName: home-assistant-tls |