From 9a106a16b7b6b9a30c7727c00f17dad10b50f8e1 Mon Sep 17 00:00:00 2001 From: Gary Brown Date: Fri, 14 Feb 2020 14:11:57 +0000 Subject: [PATCH] Add http- prefix to collector service port names (#911) * Add http- prefix to collector service port names Signed-off-by: Gary Brown * Remove tchannel prefix Signed-off-by: Gary Brown --- pkg/service/collector.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/service/collector.go b/pkg/service/collector.go index c4d92faa2..729d3ecb7 100644 --- a/pkg/service/collector.go +++ b/pkg/service/collector.go @@ -65,7 +65,7 @@ func collectorService(jaeger *v1.Jaeger, selector map[string]string) *corev1.Ser ClusterIP: "", Ports: []corev1.ServicePort{ { - Name: "zipkin", + Name: "http-zipkin", Port: 9411, }, { @@ -77,7 +77,7 @@ func collectorService(jaeger *v1.Jaeger, selector map[string]string) *corev1.Ser Port: 14267, }, { - Name: "c-binary-trft", + Name: "http-c-binary-trft", Port: 14268, }, },