mirror of
https://github.com/truenas/charts.git
synced 2026-04-13 14:29:50 +08:00
* add node-red - initial commit * add templtes * add ci values and questions * run single test * all but one * add trace logging * hmmmm * root * add tests * no 18 for now * update questions and chart.yaml * fix tests * bump common
16 lines
354 B
Smarty
16 lines
354 B
Smarty
{{- define "nodered.service" -}}
|
|
service:
|
|
nodered:
|
|
enabled: true
|
|
primary: true
|
|
type: NodePort
|
|
targetSelector: nodered
|
|
ports:
|
|
webui:
|
|
enabled: true
|
|
primary: true
|
|
port: {{ .Values.noderedNetwork.webPort }}
|
|
nodePort: {{ .Values.noderedNetwork.webPort }}
|
|
targetSelector: nodered
|
|
{{- end -}}
|