From b8fba429df81d3d822e7e6e8e7d4fb9b7ba62c8e Mon Sep 17 00:00:00 2001 From: Murat Kabilov Date: Wed, 12 Apr 2017 12:55:07 +0200 Subject: [PATCH] typo in service name --- pkg/cluster/k8sres.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cluster/k8sres.go b/pkg/cluster/k8sres.go index 0a996d556..87b6aa261 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{{Name: "Postgresql", Port: 5432, TargetPort: intstr.IntOrString{IntVal: 5432}}}, + Ports: []v1.ServicePort{{Name: "postgresql", Port: 5432, TargetPort: intstr.IntOrString{IntVal: 5432}}}, LoadBalancerSourceRanges: allowedSourceRanges, }, }