[zwavejs2mqtt] Add websocket service (#1207)

This commit is contained in:
Antoine Bertin 2021-09-21 17:48:43 +02:00 committed by GitHub
parent 330fe768d0
commit 59ea2d192b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 2 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 5.0.2 appVersion: 5.0.2
description: Fully configurable Zwave to MQTT Gateway and Control Panel description: Fully configurable Zwave to MQTT Gateway and Control Panel
name: zwavejs2mqtt name: zwavejs2mqtt
version: 5.0.1 version: 5.0.2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- zwave - zwave

View File

@ -1,6 +1,6 @@
# zwavejs2mqtt # zwavejs2mqtt
![Version: 5.0.1](https://img.shields.io/badge/Version-5.0.1-informational?style=flat-square) ![AppVersion: 5.0.2](https://img.shields.io/badge/AppVersion-5.0.2-informational?style=flat-square) ![Version: 5.0.2](https://img.shields.io/badge/Version-5.0.2-informational?style=flat-square) ![AppVersion: 5.0.2](https://img.shields.io/badge/AppVersion-5.0.2-informational?style=flat-square)
Fully configurable Zwave to MQTT Gateway and Control Panel Fully configurable Zwave to MQTT Gateway and Control Panel
@ -124,6 +124,12 @@ All notable changes to this application Helm chart will be documented in this fi
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### [5.0.2]
#### Added
- Support for websocket service
### [5.0.0] ### [5.0.0]
#### Changed #### Changed

View File

@ -9,6 +9,12 @@ All notable changes to this application Helm chart will be documented in this fi
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### [5.0.2]
#### Added
- Support for websocket service
### [5.0.0] ### [5.0.0]
#### Changed #### Changed

View File

@ -28,6 +28,9 @@ service:
ports: ports:
http: http:
port: 8091 port: 8091
websocket:
enabled: false
port: 3000
ingress: ingress:
# -- Enable and configure ingress settings for the chart under this key. # -- Enable and configure ingress settings for the chart under this key.