Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

pg-service.yaml

Blame
  • pg-service.yaml 290 B
    {{- if .Values.db.enabled }}
    apiVersion: v1
    kind: Service
    metadata:
      name: {{ template "AppCtx.dbName" . }}
      labels: {{ include "AppCtx.dbLabels" . | nindent 4 }}
    spec:
      selector: {{ include "AppCtx.dbSelectorLabels" . | nindent 4 }}
      type: ClusterIP
      ports:
       - port: 5432
    {{- end}}