Files
truecharts/charts/zwavejs2mqtt/0.1.0/values.yaml
T
renovate[bot]kjeld Schouten-LebbingRenovate Botrenovate[bot] <renovate[bot]@users.noreply.github.com>
8940e298d7 Update Helm chart common to v0.12.0 (#96)
* Update Helm chart common to v0.12.0

* Update-Folder-Names-and-Dependencies

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com>
2021-02-11 16:05:39 +01:00

138 lines
3.2 KiB
YAML

# Default values for zwavejs2mqtt.
# This chart inherits from our common library chart. You can check the default values/options here:
# https://github.com/k8s-at-home/charts/tree/master/charts/common
image:
repository: zwavejs/zwavejs2mqtt
pullPolicy: IfNotPresent
tag: 1.1.1
strategy:
type: Recreate
# # See more environment variables in the zwavejs2mqtt documentation
# https://zwave-js.github.io/zwavejs2mqtt/#/guide/env-vars
env: {}
# OZW_NETWORK_KEY:
probes:
liveness:
enabled: true
# custom: true
# spec:
# failureThreshold: 5
# httpGet:
# path: /health
# port: http
# httpHeaders:
# - name: Accept
# value: text/plain
# initialDelaySeconds: 30
# periodSeconds: 10
# timeoutSeconds: 10
readiness:
enabled: true
# custom: true
# spec:
# failureThreshold: 5
# httpGet:
# path: /health
# port: http
# httpHeaders:
# - name: Accept
# value: text/plain
# initialDelaySeconds: 30
# periodSeconds: 10
# timeoutSeconds: 10
startup:
enabled: false
# custom: true
# spec:
# failureThreshold: 5
# httpGet:
# path: /health
# port: http
# httpHeaders:
# - name: Accept
# value: text/plain
# initialDelaySeconds: 30
# periodSeconds: 10
# timeoutSeconds: 10
service:
type: NodePort
port:
name: webui
port: 8091
nodePort: 38091
# Privileged may be required if USB controller is accessed directly through the host machine
# securityContext:
# privileged: true
persistence:
config:
enabled: false
emptyDir: false
mountPath: /usr/src/app/store
## Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
# storageClass: "-"
# accessMode: ReadWriteOnce
# size: 1Gi
## Do not delete the pvc upon helm uninstall
# skipuninstall: false
# existingClaim: ""
# Path to your zwave device in the container
additionalVolumeMounts: []
# - name: usb
# mountPath: /dev/serial/by-id/usb-0658_0200-if00
# Path to your zwave device on the host
additionalVolumes: []
# - name: usb
# hostPath:
# path: /dev/serial/by-id/usb-0658_0200-if00
# affinity:
# nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms:
# - matchExpressions:
# - key: app
# operator: In
# values:
# - zwave-controller
## TrueCharts Config
emptyDirVolumes: false
appVolumesEnabled: true
appVolumeMounts:
config:
enabled: true
emptyDir: false
datasetName: "store"
mountPath: "/usr/src/app/store"
hostPathEnabled: false
zwave:
enabled: true
emptyDir: false
mountPath: "/dev/ttyAMC0"
hostPathEnabled: true
hostPath: "/dev/ttyAMC0"
appAdditionalServicesEnabled: true
appAdditionalServices:
ws:
enabled: false
type: ClusterIP
port:
port: 3000