Compare commits
2 Commits
0.13.2-con
...
94589f52d7
| Author | SHA1 | Date | |
|---|---|---|---|
|
94589f52d7
|
|||
|
474b41ffce
|
@@ -15,6 +15,7 @@ from apps.abstraction.vendors import (
|
||||
simulator,
|
||||
zigbee2mqtt,
|
||||
max,
|
||||
test,
|
||||
shelly,
|
||||
tasmota,
|
||||
hottis_pv_modbus,
|
||||
@@ -40,6 +41,7 @@ for vendor_name, vendor_module in [
|
||||
("simulator", simulator),
|
||||
("zigbee2mqtt", zigbee2mqtt),
|
||||
("max", max),
|
||||
("test", test),
|
||||
("shelly", shelly),
|
||||
("tasmota", tasmota),
|
||||
("hottis_pv_modbus", hottis_pv_modbus),
|
||||
|
||||
@@ -9,7 +9,7 @@ rules:
|
||||
thermostats:
|
||||
- thermostat_bad_unten
|
||||
params:
|
||||
eco_target: 16.0
|
||||
eco_target: 6.0
|
||||
open_min_secs: 20
|
||||
close_min_secs: 20
|
||||
- id: window_setback_esszimmer
|
||||
@@ -23,7 +23,7 @@ rules:
|
||||
thermostats:
|
||||
- thermostat_esszimmer
|
||||
params:
|
||||
eco_target: 16.0
|
||||
eco_target: 6.0
|
||||
open_min_secs: 20
|
||||
close_min_secs: 20
|
||||
previous_target_ttl_secs: 86400
|
||||
@@ -38,7 +38,7 @@ rules:
|
||||
thermostats:
|
||||
- thermostat_wohnzimmer
|
||||
params:
|
||||
eco_target: 16.0
|
||||
eco_target: 6.0
|
||||
open_min_secs: 20
|
||||
close_min_secs: 20
|
||||
previous_target_ttl_secs: 86400
|
||||
@@ -55,7 +55,7 @@ rules:
|
||||
thermostats:
|
||||
- thermostat_kueche
|
||||
params:
|
||||
eco_target: 16.0
|
||||
eco_target: 6.0
|
||||
open_min_secs: 20
|
||||
close_min_secs: 20
|
||||
previous_target_ttl_secs: 86400
|
||||
@@ -71,7 +71,7 @@ rules:
|
||||
thermostats:
|
||||
- thermostat_patty
|
||||
params:
|
||||
eco_target: 16.0
|
||||
eco_target: 6.0
|
||||
open_min_secs: 20
|
||||
close_min_secs: 20
|
||||
previous_target_ttl_secs: 86400
|
||||
@@ -85,7 +85,7 @@ rules:
|
||||
thermostats:
|
||||
- thermostat_schlafzimmer
|
||||
params:
|
||||
eco_target: 16.0
|
||||
eco_target: 6.0
|
||||
open_min_secs: 20
|
||||
close_min_secs: 20
|
||||
previous_target_ttl_secs: 86400
|
||||
@@ -99,7 +99,7 @@ rules:
|
||||
thermostats:
|
||||
- thermostat_wolfgang
|
||||
params:
|
||||
eco_target: 16.0
|
||||
eco_target: 6.0
|
||||
open_min_secs: 20
|
||||
close_min_secs: 20
|
||||
- id: window_setback_bad_oben
|
||||
@@ -112,6 +112,6 @@ rules:
|
||||
thermostats:
|
||||
- thermostat_bad_oben
|
||||
params:
|
||||
eco_target: 16.0
|
||||
eco_target: 6.0
|
||||
open_min_secs: 20
|
||||
close_min_secs: 20
|
||||
|
||||
15
tools/deploy-configuration.sh
Executable file
15
tools/deploy-configuration.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
NAMESPACE=homea2
|
||||
|
||||
kubectl create configmap home-automation-config \
|
||||
--from-file=devices.yaml=config/devices.yaml \
|
||||
--from-file=groups.yaml=config/groups.yaml \
|
||||
--from-file=layout.yaml=config/layout.yaml \
|
||||
--from-file=rules.yaml=config/rules.yaml \
|
||||
--from-file=scenes.yaml=config/scenes.yaml \
|
||||
--namespace=$NAMESPACE \
|
||||
--dry-run=client -o yaml | kubectl apply -f -
|
||||
|
||||
kubectl apply -f deployment/configmap.yaml -n $NAMESPACE
|
||||
|
||||
Reference in New Issue
Block a user