Compare commits

...

2 Commits

Author SHA1 Message Date
Antoine Bertin
59ea2d192b [zwavejs2mqtt] Add websocket service (#1207) 2021-09-21 11:48:43 -04:00
Winston R. Milling
330fe768d0 [valheim] Update to use ghcr for image (#1205) 2021-09-19 09:03:42 -04:00
7 changed files with 21 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: latest
description: Valheim dedicated gameserver with automatic update and world backup support
name: valheim
version: 4.0.1
version: 4.0.2
kubeVersion: ">=1.16.0-0"
keywords:
- valheim

View File

@@ -1,6 +1,6 @@
# valheim
![Version: 4.0.1](https://img.shields.io/badge/Version-4.0.1-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
![Version: 4.0.2](https://img.shields.io/badge/Version-4.0.2-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
Valheim dedicated gameserver with automatic update and world backup support
@@ -79,7 +79,7 @@ N/A
| env | object | See below | environment variables. See [image docs](https://github.com/lloesche/valheim-server-docker#environment-variables) for more details. |
| env.TZ | string | `"UTC"` | Set the container timezone |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"lloesche/valheim-server"` | image repository |
| image.repository | string | `"ghcr.io/lloesche/valheim-server"` | image repository |
| image.tag | string | `"latest"` | image tag |
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
| service | object | See values.yaml | Configures service settings for the chart. |

View File

@@ -7,7 +7,7 @@
image:
# -- image repository
repository: lloesche/valheim-server
repository: ghcr.io/lloesche/valheim-server
# -- image tag
tag: latest
# -- image pull policy

View File

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

View File

@@ -1,6 +1,6 @@
# 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
@@ -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).
### [5.0.2]
#### Added
- Support for websocket service
### [5.0.0]
#### 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).
### [5.0.2]
#### Added
- Support for websocket service
### [5.0.0]
#### Changed

View File

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