From d66eacc5705b8ce4f229d7c72c77bbdfe5eb8a90 Mon Sep 17 00:00:00 2001 From: irizzant Date: Mon, 20 Apr 2020 14:11:41 +0200 Subject: [PATCH] [incubator/haproxy-ingress] Change service port names to meet Istio requirements (#22004) * Change service port names to meet Istio requirements Signed-off-by: irizzant * Bump chart version Signed-off-by: irizzant --- incubator/haproxy-ingress/Chart.yaml | 2 +- incubator/haproxy-ingress/templates/controller-service.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/incubator/haproxy-ingress/Chart.yaml b/incubator/haproxy-ingress/Chart.yaml index 448bc01d1e..cb1f7a6735 100644 --- a/incubator/haproxy-ingress/Chart.yaml +++ b/incubator/haproxy-ingress/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: haproxy-ingress -version: 0.0.23 +version: 0.0.24 appVersion: 0.7.2 home: https://github.com/jcmoraisjr/haproxy-ingress description: Ingress controller implementation for haproxy loadbalancer. diff --git a/incubator/haproxy-ingress/templates/controller-service.yaml b/incubator/haproxy-ingress/templates/controller-service.yaml index e8e4dc7920..5c2f472842 100644 --- a/incubator/haproxy-ingress/templates/controller-service.yaml +++ b/incubator/haproxy-ingress/templates/controller-service.yaml @@ -40,7 +40,7 @@ spec: ports: {{- if .Values.controller.enableStaticPorts }} {{- range .Values.controller.service.httpPorts }} - - name: "{{ .port }}-http" + - name: "http-{{ .port }}" port: {{ .port }} protocol: TCP targetPort: {{ .targetPort }} @@ -49,7 +49,7 @@ spec: {{- end }} {{- end }} {{- range .Values.controller.service.httpsPorts }} - - name: "{{ .port }}-https" + - name: "https-{{ .port }}" port: {{ .port }} protocol: TCP targetPort: {{ .targetPort }}