fix(deconz): Move to different container repo (#1418)

* fix(deconz): Move to different container repo

BREAKING-CHANGE: Changed storage locatin, might require reinstall

* non root

* hmm

* try a test fix
This commit is contained in:
Kjeld Schouten-Lebbing
2021-11-28 14:43:30 +01:00
committed by GitHub
parent e18a7a0da5
commit a3c3a46168
4 changed files with 13 additions and 16 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ name: deconz
sources: sources:
- https://github.com/dresden-elektronik/deconz-rest-plugin - https://github.com/dresden-elektronik/deconz-rest-plugin
- https://github.com/marthoc/docker-deconz - https://github.com/marthoc/docker-deconz
version: 4.0.12 version: 5.0.0
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media
+2
View File
@@ -0,0 +1,2 @@
env:
DECONZ_DEVICE: 0
+1 -1
View File
@@ -372,7 +372,7 @@ questions:
description: "Path inside the container the storage is mounted" description: "Path inside the container the storage is mounted"
schema: schema:
type: string type: string
default: "/root/.local/share/dresden-elektronik/deCONZ" default: "/opt/deCONZ"
hidden: true hidden: true
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$' valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
- variable: medium - variable: medium
+9 -14
View File
@@ -1,15 +1,8 @@
#
# IMPORTANT NOTE
#
# This chart inherits from our common library chart. You can check the default values/options here:
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
#
image: image:
# -- image repository # -- image repository
repository: ghcr.io/truecharts/deconz repository: ghcr.io/deconz-community/deconz-docker
# -- image tag # -- image tag
tag: v2.13.01@sha256:92a7a439e6010e21265fa5beaa47b0172bc6b6682f4e2d26bcd43c772ff7ddbd tag: v2.13.02@sha256:ed4a88ee75eeaf04155c3e733cf38011247139ed265d178b67ddde46889eca8c
# -- image pull policy # -- image pull policy
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
@@ -31,11 +24,13 @@ env:
# -- Enable VNC access to the container to view the deCONZ ZigBee mesh # -- Enable VNC access to the container to view the deCONZ ZigBee mesh
DECONZ_VNC_MODE: 1 DECONZ_VNC_MODE: 1
# -- Web UI listen port # -- Web UI listen port
DECONZ_WEB_PORT: 80 DECONZ_WEB_PORT: 8080
# -- Websocket listen port # -- Websocket listen port
DECONZ_WS_PORT: 443 DECONZ_WS_PORT: 6080
# -- VNC server listen port # -- VNC server listen port
DECONZ_VNC_PORT: 5900 DECONZ_VNC_PORT: 5900
DECONZ_UID: 568
DECONZ_GID: 568
# -- If VNC is enabled (DECONZ_VNC_MODE=1) you can change the default password "changeme" using a Secret. # -- If VNC is enabled (DECONZ_VNC_MODE=1) you can change the default password "changeme" using a Secret.
DECONZ_VNC_PASSWORD: DECONZ_VNC_PASSWORD:
# secretKeyRef: # secretKeyRef:
@@ -49,14 +44,14 @@ service:
ports: ports:
main: main:
port: 10008 port: 10008
targetPort: 80 targetPort: 8080
websocket: websocket:
enabled: true enabled: true
ports: ports:
websocket: websocket:
enabled: true enabled: true
port: 10001 port: 10001
targetPort: 443 targetPort: 6080
vnc: vnc:
enabled: true enabled: true
ports: ports:
@@ -70,7 +65,7 @@ service:
persistence: persistence:
config: config:
enabled: true enabled: true
mountPath: "/root/.local/share/dresden-elektronik/deCONZ" mountPath: "/opt/deCONZ"
# -- Affinity constraint rules to place the Pod on a specific node. # -- Affinity constraint rules to place the Pod on a specific node.
# [[ref]](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity) # [[ref]](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity)