From 1350a2616288d92c191d61123af12bf4292ed122 Mon Sep 17 00:00:00 2001 From: Patrice Ferlet Date: Wed, 1 Jun 2022 16:56:54 +0200 Subject: [PATCH] Add name to service port --- helm/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/service.go b/helm/service.go index 72983ba..78a0f78 100644 --- a/helm/service.go +++ b/helm/service.go @@ -35,7 +35,7 @@ func NewServicePort(port, target int) *ServicePort { Protocol: "TCP", Port: port, TargetPort: port, - Name: "port-" + strconv.Itoa(port), + Name: "port-" + strconv.Itoa(target), } }