mirror of
https://github.com/truenas/charts.git
synced 2026-04-24 18:41:41 +08:00
* initial commit * add some templates * fix config * add metadata and ci values * expose more config * add values * fix lint * add ui * add validation * whops * update description * formatting * rename app
17 lines
385 B
Smarty
17 lines
385 B
Smarty
{{- define "twofauth.service" -}}
|
|
service:
|
|
twofauth:
|
|
enabled: true
|
|
primary: true
|
|
type: NodePort
|
|
targetSelector: twofauth
|
|
ports:
|
|
webui:
|
|
enabled: true
|
|
primary: true
|
|
port: {{ .Values.twofauthNetwork.webPort }}
|
|
nodePort: {{ .Values.twofauthNetwork.webPort }}
|
|
targetPort: 8000
|
|
targetSelector: twofauth
|
|
{{- end -}}
|