summaryrefslogtreecommitdiffstats
path: root/kubernetes/common/pgpool/templates/service.yaml
blob: 0811fda593bc90e94978af0fc294032d72f8b878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
kind: "Service"
apiVersion: "v1"
metadata:
  name: "pgpool"
  labels:
    name: "pgpool"
spec: 
  ports:
    - protocol: "TCP"
      port: 5432
      targetPort: 5432
  selector:
    name: "pgpool"
  type: ClusterIP