mirror of
https://github.com/truenas/charts.git
synced 2026-04-27 20:13:21 +08:00
* Add `distribution` to `community` train * add service * initial tests * add values * https * add persistence * add htpasswd * mount file * secret * fix fullname * typo * typo * add questions and metadata * remove * format * allow disabling fs backend * test with ro root fs * remove comment * fix auth and perms * update icon
16 lines
382 B
Smarty
16 lines
382 B
Smarty
{{- define "distribution.service" -}}
|
|
service:
|
|
distribution:
|
|
enabled: true
|
|
primary: true
|
|
type: NodePort
|
|
targetSelector: distribution
|
|
ports:
|
|
api:
|
|
enabled: true
|
|
primary: true
|
|
port: {{ .Values.distributionNetwork.apiPort }}
|
|
nodePort: {{ .Values.distributionNetwork.apiPort }}
|
|
targetSelector: distribution
|
|
{{- end -}}
|