TrueChartsClone/charts/stable/deconz/values.yaml

68 lines
1.6 KiB
YAML

image:
repository: tccr.io/truecharts/deconz
tag: 2.18.02@sha256:6ee9ca707d70fcc6f0f8b3ca79ed0de70ae809ea09f756ebd0b4f08202b59a2c
pullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
secretEnv:
DECONZ_VNC_PASSWORD: ""
env:
# -- Override the location where deCONZ looks for the RaspBee/Conbee device.
# Example: /dev/ttyUSB0
DECONZ_DEVICE: ""
DECONZ_UPNP: 0
DECONZ_START_VERBOSE: 0
# -- Enable VNC access to the container to view the deCONZ ZigBee mesh
DECONZ_VNC_MODE: 1
DECONZ_WEB_PORT: "{{ .Values.service.main.ports.main.port }}"
DECONZ_WS_PORT: "{{ .Values.service.websocket.ports.websocket.port }}"
DECONZ_VNC_PORT: "{{ .Values.service.vnc.ports.vnc.port }}"
DECONZ_UID: "{{ .Values.security.PUID }}"
DECONZ_GID: "{{ .Values.podSecurityContext.fsGroup }}"
service:
main:
ports:
main:
port: 10008
websocket:
enabled: true
ports:
websocket:
enabled: true
port: 10001
vnc:
enabled: true
ports:
vnc:
enabled: true
port: 10002
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
portal:
enabled: true