mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-26 02:16:30 +00:00
* add workflow * feat: add pgcat helm chart * fix: set the right include into configmap Signed-off-by: David ALEXANDRE <david.alexandre@w6d.io> * update values and config * prettifying config --------- Signed-off-by: David ALEXANDRE <david.alexandre@w6d.io>
16 lines
357 B
YAML
16 lines
357 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "pgcat.fullname" . }}
|
|
labels:
|
|
{{- include "pgcat.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: pgcat
|
|
protocol: TCP
|
|
name: pgcat
|
|
selector:
|
|
{{- include "pgcat.selectorLabels" . | nindent 4 }}
|