Files
chart/library/ix-dev/charts/nextcloud/templates/postgres-service.yaml
Stavros Kois 91261f378f Move nextcloud to ix-dev (#1050)
* move nextcloud to ix-dev

* fix probe and update lock

* indent
2023-03-24 23:27:53 +02:00

7 lines
343 B
YAML

{{ $ports := list }}
{{ $ports = mustAppend $ports (dict "name" "postgres-tcp" "port" 5432 "targetPort" 5432) }}
{{ $values := (. | mustDeepCopy) }}
{{ $_ := set $values "common" (dict "nameSuffix" "postgres") }}
{{ $_1 := set $values "commonService" (dict "type" "ClusterIP" "ports" $ports ) }}
{{ include "common.classes.service" $values }}