Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
587a7c7fe8
commit
351db5f7f4
|
@ -1 +0,0 @@
|
|||
# README
|
|
@ -1,4 +0,0 @@
|
|||
|
||||
|
||||
## [somfyprotect2mqtt-0.0.1]somfyprotect2mqtt-0.0.1 (2023-02-22)
|
||||
|
|
@ -4,5 +4,10 @@
|
|||
|
||||
|
||||
|
||||
## [somfyprotect2mqtt-0.0.2](https://github.com/truecharts/charts/compare/somfyprotect2mqtt-0.0.1...somfyprotect2mqtt-0.0.2) (2023-02-23)
|
||||
|
||||
|
||||
|
||||
|
||||
## [somfyprotect2mqtt-0.0.1]somfyprotect2mqtt-0.0.1 (2023-02-22)
|
||||
|
|
@ -20,9 +20,8 @@ name: somfyprotect2mqtt
|
|||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/somfyprotect2mqtt
|
||||
- https://github.com/Minims/SomfyProtect2MQTT
|
||||
- https://hub.docker.com/r/minims/somfyprotect2mqtt
|
||||
type: application
|
||||
version: 0.0.1
|
||||
version: 0.0.2
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- homeautomation
|
|
@ -0,0 +1,27 @@
|
|||
# README
|
||||
|
||||
## General Info
|
||||
|
||||
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
|
||||
However only installations using the TrueNAS SCALE Apps system are supported.
|
||||
|
||||
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE%20Apps/Important-MUST-READ).
|
||||
- See the [Website](https://truecharts.org)
|
||||
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
|
||||
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
|
||||
|
||||
---
|
||||
|
||||
## Sponsor TrueCharts
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||
|
||||
*All Rights Reserved - The TrueCharts Project*
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
## [somfyprotect2mqtt-0.0.2](https://github.com/truecharts/charts/compare/somfyprotect2mqtt-0.0.1...somfyprotect2mqtt-0.0.2) (2023-02-23)
|
||||
|
|
@ -126,8 +126,8 @@ questions:
|
|||
label: Alarm Code
|
||||
description: Code to arm/disarm, Remove code to disable.
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
type: int
|
||||
default: 1234
|
||||
- variable: alarm_code_arm_required
|
||||
label: Alarm Code Required
|
||||
schema:
|
|
@ -22,25 +22,27 @@ stringData:
|
|||
{{- with $sp2mqtt.somfy.sites }}
|
||||
sites:
|
||||
{{- range $site := . }}
|
||||
- {{ . | quote }}
|
||||
- {{ . }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
homeassistant_config:
|
||||
code: {{ $sp2mqtt.ha.alarm_code }}
|
||||
{{- with $sp2mqtt.ha.alarm_code }}
|
||||
code: {{ . }}
|
||||
{{- end }}
|
||||
code_arm_required: {{ ternary "true" "false" $sp2mqtt.ha.alarm_code_arm_required }}
|
||||
code_disarm_required: {{ ternary "true" "false" $sp2mqtt.ha.alarm_code_disarm_required }}
|
||||
|
||||
mqtt:
|
||||
host: {{ $sp2mqtt.mqtt.host | quote }}
|
||||
port: {{ $sp2mqtt.mqtt.port | quote }}
|
||||
host: {{ $sp2mqtt.mqtt.host }}
|
||||
port: {{ $sp2mqtt.mqtt.port }}
|
||||
username: {{ $sp2mqtt.mqtt.username | quote }}
|
||||
password: {{ $sp2mqtt.mqtt.password | quote }}
|
||||
client-id: {{ $sp2mqtt.mqtt.client_id | quote }}
|
||||
client-id: {{ $sp2mqtt.mqtt.client_id }}
|
||||
topic_prefix: {{ $sp2mqtt.mqtt.topic_prefix | quote }}
|
||||
ha_discover_prefix: {{ $sp2mqtt.mqtt.ha_discover_prefix | quote }}
|
||||
|
||||
delay_site: {{ $sp2mqtt.delay_site | quote }}
|
||||
delay_device: {{ $sp2mqtt.delay_device | quote }}
|
||||
delay_site: {{ $sp2mqtt.delay_site }}
|
||||
delay_device: {{ $sp2mqtt.delay_device }}
|
||||
manual_snapshot: {{ ternary "true" "false" $sp2mqtt.manual_snapshot }}
|
||||
{{- end -}}
|
Loading…
Reference in New Issue