mirror of
https://github.com/truenas/charts.git
synced 2026-04-23 18:10:06 +08:00
* add `drawio` to `community` train * http/https * other user * cleanup * update questions * typo
23 lines
573 B
Smarty
23 lines
573 B
Smarty
{{- define "drawio.service" -}}
|
|
service:
|
|
drawio:
|
|
enabled: true
|
|
primary: true
|
|
type: NodePort
|
|
targetSelector: drawio
|
|
ports:
|
|
http:
|
|
enabled: true
|
|
primary: true
|
|
port: {{ .Values.drawioNetwork.httpPort }}
|
|
nodePort: {{ .Values.drawioNetwork.httpPort }}
|
|
targetPort: 8080
|
|
targetSelector: drawio
|
|
https:
|
|
enabled: true
|
|
port: {{ .Values.drawioNetwork.httpsPort }}
|
|
nodePort: {{ .Values.drawioNetwork.httpsPort }}
|
|
targetPort: 8443
|
|
targetSelector: drawio
|
|
{{- end -}}
|