From 23a95543704efdb376a84efad18957d6255d07a1 Mon Sep 17 00:00:00 2001 From: "Sravan, Kumar" Date: Thu, 9 Jan 2020 16:51:26 +0900 Subject: [PATCH] Update service port naming inline with istio naming conventions https://istio.io/docs/ops/deployment/requirements/ Change http -> https for webhook port name --- config/400-controller-service.yaml | 2 +- config/400-webhook-service.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config/400-controller-service.yaml b/config/400-controller-service.yaml index cbfb83688e0..ac86abc3c28 100644 --- a/config/400-controller-service.yaml +++ b/config/400-controller-service.yaml @@ -21,7 +21,7 @@ metadata: namespace: tekton-pipelines spec: ports: - - name: metrics + - name: http-metrics port: 9090 protocol: TCP targetPort: 9090 diff --git a/config/400-webhook-service.yaml b/config/400-webhook-service.yaml index 30dda87dde3..7d0eddc719e 100644 --- a/config/400-webhook-service.yaml +++ b/config/400-webhook-service.yaml @@ -21,7 +21,8 @@ metadata: namespace: tekton-pipelines spec: ports: - - port: 443 + - name: https-webhook + port: 443 targetPort: 8443 selector: app: tekton-pipelines-webhook