8a24c8721f
* Fix targetPort not being processed correctly * Always use PVC in values.yaml just to be sure it actually works * fix a small copy-paste mistake * bump * fix hyperion-ng mistake
33 lines
543 B
YAML
33 lines
543 B
YAML
# Default values for node-red.
|
|
|
|
image:
|
|
repository: nodered/node-red
|
|
pullPolicy: IfNotPresent
|
|
tag: 2.0.5
|
|
|
|
strategy:
|
|
type: Recreate
|
|
|
|
# See more environment varaibles in the node-red documentation
|
|
# https://nodered.org/docs/getting-started/docker
|
|
env: {}
|
|
# TZ:
|
|
# NODE_OPTIONS:
|
|
# NODE_RED_ENABLE_PROJECTS:
|
|
# NODE_RED_ENABLE_SAFE_MODE:
|
|
# FLOWS:
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 1880
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/data"
|
|
type: pvc
|
|
accessMode: ReadWriteOnce
|
|
size: "100Gi"
|