fix(deconz): correctly link gid and uid (#1988)
* fix(deconz): correctly link gid and uid * bump * cleanup
This commit is contained in:
parent
926933ed91
commit
f0b2ae4afd
|
@ -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: 6.0.24
|
version: 6.0.25
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|
|
@ -97,6 +97,12 @@ questions:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
# Include{fixedEnv}
|
# Include{fixedEnv}
|
||||||
|
- variable: PUID
|
||||||
|
label: "PUID"
|
||||||
|
description: "Sets the PUID env var for LinuxServer.io (compatible) containers"
|
||||||
|
schema:
|
||||||
|
type: int
|
||||||
|
default: 568
|
||||||
- variable: DECONZ_DEVICE
|
- variable: DECONZ_DEVICE
|
||||||
label: "DECONZ_DEVICE"
|
label: "DECONZ_DEVICE"
|
||||||
description: "Override the location where deCONZ looks for the RaspBee/Conbee device"
|
description: "Override the location where deCONZ looks for the RaspBee/Conbee device"
|
||||||
|
@ -109,6 +115,18 @@ questions:
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 1
|
default: 1
|
||||||
|
- variable: DECONZ_UPNP
|
||||||
|
label: "DECONZ_UPNP"
|
||||||
|
description: "Set this option to 0 to disable uPNP"
|
||||||
|
schema:
|
||||||
|
type: int
|
||||||
|
default: 0
|
||||||
|
- variable: DECONZ_START_VERBOSE
|
||||||
|
label: "DECONZ_START_VERBOSE"
|
||||||
|
description: "Set this option to 0 to disable verbose of start script, set to 1 to enable set -x logging"
|
||||||
|
schema:
|
||||||
|
type: int
|
||||||
|
default: 0
|
||||||
|
|
||||||
# Include{containerConfig}
|
# Include{containerConfig}
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
image:
|
image:
|
||||||
# -- image repository
|
|
||||||
repository: tccr.io/truecharts/deconz
|
repository: tccr.io/truecharts/deconz
|
||||||
# -- image tag
|
|
||||||
tag: v2.14.01@sha256:c3607b4e64b50acb52240d1b6e6798ccd132578fb3f065544be642709638b1c2
|
tag: v2.14.01@sha256:c3607b4e64b50acb52240d1b6e6798ccd132578fb3f065544be642709638b1c2
|
||||||
# -- image pull policy
|
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
securityContext:
|
securityContext:
|
||||||
|
@ -17,23 +14,21 @@ podSecurityContext:
|
||||||
secret:
|
secret:
|
||||||
DECONZ_VNC_PASSWORD: ""
|
DECONZ_VNC_PASSWORD: ""
|
||||||
|
|
||||||
# -- environment variables. See [image docs](https://github.com/marthoc/docker-deconz/blob/master/README.md) for more details.
|
|
||||||
# @default -- See below
|
|
||||||
env:
|
env:
|
||||||
# -- Set the container timezone
|
|
||||||
TZ: UTC
|
TZ: UTC
|
||||||
|
PUID: 568
|
||||||
# -- Override the location where deCONZ looks for the RaspBee/Conbee device.
|
# -- Override the location where deCONZ looks for the RaspBee/Conbee device.
|
||||||
DECONZ_DEVICE: # /dev/ttyUSB0
|
DECONZ_DEVICE: # /dev/ttyUSB0
|
||||||
|
DECONZ_UPNP: 0
|
||||||
|
DECONZ_START_VERBOSE: 0
|
||||||
# -- 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
|
||||||
DECONZ_WEB_PORT: "{{ .Values.service.main.ports.main.port }}"
|
DECONZ_WEB_PORT: "{{ .Values.service.main.ports.main.port }}"
|
||||||
DECONZ_WS_PORT: "{{ .Values.service.websocket.ports.websocket.port }}"
|
DECONZ_WS_PORT: "{{ .Values.service.websocket.ports.websocket.port }}"
|
||||||
DECONZ_VNC_PORT: "{{ .Values.service.vnc.ports.vnc.port }}"
|
DECONZ_VNC_PORT: "{{ .Values.service.vnc.ports.vnc.port }}"
|
||||||
DECONZ_UID: 568
|
DECONZ_UID: "{{ .Values.env.PUID }}"
|
||||||
DECONZ_GID: 568
|
DECONZ_GID: "{{ .Values.podSecurityContext.fsGroup }}"
|
||||||
|
|
||||||
# -- Configures service settings for the chart.
|
|
||||||
# @default -- See values.yaml
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
|
@ -52,8 +47,6 @@ service:
|
||||||
enabled: true
|
enabled: true
|
||||||
port: 10002
|
port: 10002
|
||||||
|
|
||||||
# -- Configure persistence settings for the chart under this key.
|
|
||||||
# @default -- See values.yaml
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
Loading…
Reference in New Issue