Files
truecharts/charts/stable/deconz/values.yaml
T
Kjeld Schouten-LebbingandGitHub a3c3a46168 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
2021-11-28 14:43:30 +01:00

81 lines
2.1 KiB
YAML

image:
# -- image repository
repository: ghcr.io/deconz-community/deconz-docker
# -- image tag
tag: v2.13.02@sha256:ed4a88ee75eeaf04155c3e733cf38011247139ed265d178b67ddde46889eca8c
# -- image pull policy
pullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
# -- environment variables. See [image docs](https://github.com/marthoc/docker-deconz/blob/master/README.md) for more details.
# @default -- See below
env:
# -- Set the container timezone
TZ: UTC
# -- Override the location where deCONZ looks for the RaspBee/Conbee device.
DECONZ_DEVICE: # /dev/ttyUSB0
# -- Enable VNC access to the container to view the deCONZ ZigBee mesh
DECONZ_VNC_MODE: 1
# -- Web UI listen port
DECONZ_WEB_PORT: 8080
# -- Websocket listen port
DECONZ_WS_PORT: 6080
# -- VNC server listen port
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.
DECONZ_VNC_PASSWORD:
# secretKeyRef:
# name: deconz-vnc-password
# key: password
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
port: 10008
targetPort: 8080
websocket:
enabled: true
ports:
websocket:
enabled: true
port: 10001
targetPort: 6080
vnc:
enabled: true
ports:
vnc:
enabled: true
port: 10002
targetPort: 5900
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
config:
enabled: true
mountPath: "/opt/deCONZ"
# -- 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)
affinity: {}
# nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms:
# - matchExpressions:
# - key: app
# operator: In
# values:
# - zigbee-controller