mirror of
https://github.com/truenas/charts.git
synced 2026-04-13 17:52:13 +08:00
* add `planka` to `community` train * lock file * add initial tempaltes * add service * fix url * update portal * test * metadata * questions * typo * add validation * typo * fix logic * switch to uri type * update description * bump common
27 lines
575 B
Smarty
27 lines
575 B
Smarty
{{- define "planka.service" -}}
|
|
service:
|
|
planka:
|
|
enabled: true
|
|
primary: true
|
|
type: NodePort
|
|
targetSelector: planka
|
|
ports:
|
|
webui:
|
|
enabled: true
|
|
primary: true
|
|
port: {{ .Values.plankaNetwork.webPort }}
|
|
nodePort: {{ .Values.plankaNetwork.webPort }}
|
|
targetSelector: planka
|
|
postgres:
|
|
enabled: true
|
|
type: ClusterIP
|
|
targetSelector: postgres
|
|
ports:
|
|
postgres:
|
|
enabled: true
|
|
primary: true
|
|
port: 5432
|
|
targetPort: 5432
|
|
targetSelector: postgres
|
|
{{- end -}}
|