d733be90e3
* Including UI with lint Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> * Ingress deactivated by default Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> * Version 0.2.0 Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> * Add ui settings Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> * Display the application URL Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> * Protect boolean as string Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> * Remove warning from lint Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> * Move probes, service and ingress within ui values Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> * Revert "Move probes, service and ingress within ui values" This reverts commit 08a91e316bb81aee43739ed51f89d378541cf255. * Using generic configmap por assistant settings Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> * Move probes, services and ingress within assistant section Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> * Some wording Signed-off-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> Co-authored-by: Miguel Angel Santiago <miguelangel.santiago@hotmail.com> |
||
---|---|---|
.. | ||
templates | ||
.helmignore | ||
Chart.yaml | ||
README.md | ||
values.yaml |
zigbee2mqtt: Fully configurable Zigbee to MQTT Gateway
This is a helm chart for zigbee2mqtt
TL;DR;
$ helm repo add billimek https://billimek.com/billimek-charts/
$ helm install billimek/zigbee2mqtt
Installing the Chart
To install the chart with the release name my-release
:
helm install --name my-release billimek/zigbee2mqtt
IMPORTANT NOTE: a supported Zigbee sniffer must be accessible on the node where this pod runs, in order for this chart to function properly.
A way to achieve this can be with nodeAffinity rules, for example:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: app
operator: In
values:
- zigbee-controller
... where a node with an attached zigbee sniffer is labeled with app: zigbee-controller
Because zigbee2mqtt writes to the config file, it is impossible to manage it through this chart. The configuration options will be set as defaults on first run, and then copied to a writeable directory. It can be found in /data/configuration.yaml afterwards.
Uninstalling the Chart
To uninstall/delete the my-release
deployment:
helm delete my-release --purge
The command removes all the Kubernetes components associated with the chart and deletes the release.
Configuration
Read through the values.yaml file. It has several commented out suggested values.
Specify each parameter using the --set key=value[,key=value]
argument to helm install
. For example,
helm install --name my-release \
--set config.mqtt.server="mqtt://mymqttbroker" \
billimek/zigbee2mqtt
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
helm install --name my-release -f values.yaml billimek/zigbee2mqtt