mirror of
https://github.com/truenas/charts.git
synced 2026-04-23 18:10:06 +08:00
* init commit * fixes * more fixes * fix * fiox * fix pre-flight * cron * update questions * add migration * add to_keep_versions * fix typos * remove comment * clean
28 lines
630 B
Smarty
28 lines
630 B
Smarty
{{- define "diskover.service" -}}
|
|
service:
|
|
diskover:
|
|
enabled: true
|
|
primary: true
|
|
type: NodePort
|
|
targetSelector: diskover
|
|
ports:
|
|
webui:
|
|
enabled: true
|
|
primary: true
|
|
port: {{ .Values.diskoverNetwork.webPort }}
|
|
nodePort: {{ .Values.diskoverNetwork.webPort }}
|
|
targetPort: 80
|
|
targetSelector: diskover
|
|
elasticsearch:
|
|
enabled: true
|
|
type: ClusterIP
|
|
targetSelector: elasticsearch
|
|
ports:
|
|
elasticsearch:
|
|
enabled: true
|
|
primary: true
|
|
port: 9200
|
|
targetPort: 9200
|
|
targetSelector: elasticsearch
|
|
{{- end -}}
|