mirror of
https://github.com/truenas/charts.git
synced 2026-04-14 02:00:11 +08:00
* add `pgadmin` to `community` train * add readme's * metadata * add templates and values * update metadat
16 lines
354 B
Smarty
16 lines
354 B
Smarty
{{- define "pgadmin.service" -}}
|
|
service:
|
|
pgadmin:
|
|
enabled: true
|
|
primary: true
|
|
type: NodePort
|
|
targetSelector: pgadmin
|
|
ports:
|
|
webui:
|
|
enabled: true
|
|
primary: true
|
|
port: {{ .Values.pgadminNetwork.webPort }}
|
|
nodePort: {{ .Values.pgadminNetwork.webPort }}
|
|
targetSelector: pgadmin
|
|
{{- end -}}
|