Files
chart/library/ix-dev/community/passbolt/templates/_service.tpl
Stavros Kois 7513fcf82b add passbolt to community train (#1650)
* init commit

* add `passbolt` to `community` train

* roofs

* mount var run

* probes

* try init user

* fix app url

* add metadata

* remove init user

* add questions and revert to user 33

* plump hostnet and add hostnet values for ci

* fix perms and UI
2023-10-20 23:59:13 +03:00

32 lines
720 B
Smarty

{{- define "passbolt.service" -}}
{{- $port := 8080 -}}
{{- if .Values.passboltNetwork.certificateID -}}
{{- $port = 4433 -}}
{{- end }}
service:
passbolt:
enabled: true
primary: true
type: NodePort
targetSelector: passbolt
ports:
webui:
enabled: true
primary: true
port: {{ .Values.passboltNetwork.webPort }}
nodePort: {{ .Values.passboltNetwork.webPort }}
targetPort: {{ $port }}
targetSelector: passbolt
mariadb:
enabled: true
type: ClusterIP
targetSelector: mariadb
ports:
mariadb:
enabled: true
primary: true
port: 3306
targetPort: 3306
targetSelector: mariadb
{{- end -}}