diff --git a/home-assistant/ingress.yaml b/home-assistant/ingress.yaml index 3109a33..a0b4728 100644 --- a/home-assistant/ingress.yaml +++ b/home-assistant/ingress.yaml @@ -33,7 +33,7 @@ spec: service: name: ha-svc port: - number: 443 + number: 80 # TLS configuration for HTTPS tls: diff --git a/home-assistant/service.yaml b/home-assistant/service.yaml index e89f3f2..77985ab 100644 --- a/home-assistant/service.yaml +++ b/home-assistant/service.yaml @@ -1,14 +1,14 @@ apiVersion: v1 kind: Service metadata: - name: app + name: ha-svc spec: + selector: + app.kubernetes.io/name: app ports: - - name: app - port: 443 - targetPort: 8123 - # ipFamilies: - # - IPv4 - # ipFamilyPolicy: SingleStack - # clusterIP: None - # type: ClusterIP \ No newline at end of file + - name: http + protocol: TCP + port: 80 + targetPort: 8123 + externalIPs: + - 192.168.1.202 \ No newline at end of file