diff --git a/pkg/cluster/k8sres.go b/pkg/cluster/k8sres.go index dc18d7043..0a996d556 100644 --- a/pkg/cluster/k8sres.go +++ b/pkg/cluster/k8sres.go @@ -247,7 +247,7 @@ func (c *Cluster) genService(allowedSourceRanges []string) *v1.Service { }, Spec: v1.ServiceSpec{ Type: v1.ServiceTypeLoadBalancer, - Ports: []v1.ServicePort{{Port: 5432, TargetPort: intstr.IntOrString{IntVal: 5432}}}, + Ports: []v1.ServicePort{{Name: "Postgresql", Port: 5432, TargetPort: intstr.IntOrString{IntVal: 5432}}}, LoadBalancerSourceRanges: allowedSourceRanges, }, }