Last active
January 26, 2024 19:15
-
-
Save cerebrate/50cb42f370ccab01c523bd858fb2ef43 to your computer and use it in GitHub Desktop.
Exposing HA to Alexa via Tailscale
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: networking.k8s.io/v1 | |
kind: Ingress | |
metadata: | |
name: homeassistant-alexa-ingress | |
namespace: homeassistant | |
annotations: | |
tailscale.com/funnel: "true" | |
spec: | |
ingressClassName: tailscale | |
rules: | |
- http: | |
paths: | |
- path: /api/alexa | |
pathType: Prefix | |
backend: | |
service: | |
name: homeassistant | |
port: | |
number: 8123 | |
- path: /auth/authorize | |
pathType: Prefix | |
backend: | |
service: | |
name: homeassistant | |
port: | |
number: 8123 | |
- path: /auth/token | |
pathType: Prefix | |
backend: | |
service: | |
name: homeassistant | |
port: | |
number: 8123 | |
tls: | |
- hosts: | |
- ha-alexa |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment