Home Assistant: Free and open-source home automation software designed to be the central home automation control system for smart home technology.
All my automations are running in Node-RED flows as an alternative automation engine.
- Aeotec Z-Wave Gen5 Stick 908.42 MHz
- Bluesound Powernode 2i
- ESP32
- ESP8622
- First Alert Z-Wave Smoke & Carbon Monoxide detector 2nd Gen 908.42 MHz
- Google Home Speaker
- ISKRA Smart Meter
- LG SmartTV WebOS
- Nvidia Shield TV Pro
- Shelly 1 Relay
- Shelly 1PM Mini Gen3
- Shelly BLU Door/Window
- Shelly BLU H&T
- Shelly BLU Motion
- Shelly Bulb RGBW
- Shelly Dimmer
- Shelly Dimmer2
- Shelly Plug-S
- Shelly Plus Plug
- Shelly i3
- SolarEdge Inverter
- Tado Bridge
- Tado Smart Thermostat
- Tado Smart Radiator Thermostat
- Tado Wireless Temperature Sensor
- Xioami Roborock S55
- Xioami Roborock S6 Pure
Copy installed HACS integration types from pod to local git repo directory
rm -r /home/coen/github/home-assistant/src/config/custom_components/* &&
for podname in $(kubectl get pods -n home-automation -l app=home-assistant -o json| jq -r '.items[].metadata.name'); do kubectl cp home-automation/${podname}:/config/custom_components /home/coen/github/home-assistant/src/config/custom_components; done
Copy installed HACS dashboard types from pod to local git repo directory
rm -r /home/coen/github/home-assistant/src/config/www/community/* &&
for podname in $(kubectl get pods -n home-automation -l app=home-assistant -o json| jq -r '.items[].metadata.name'); do kubectl cp home-automation/${podname}:/config/www/community /home/coen/github/home-assistant/src/config/www/community; done