From f5ddf6af7685bb880619c2a0c171996b0ff9e44b Mon Sep 17 00:00:00 2001 From: Itay Shakury Date: Fri, 20 Oct 2017 18:22:33 +0300 Subject: [PATCH] fixed https port forwarding 443 was redirected to named port 'http' instead of 'https' (points to https://github.com/kubernetes/ingress-nginx/blob/master/deploy/provider/patch-service-without-rbac.yaml#L35) In the AWS/GCP examples it was fine ('https') so I fixed it for azure as well. --- deploy/provider/azure/service.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/provider/azure/service.yaml b/deploy/provider/azure/service.yaml index 0af8b11f4..8d2f71505 100644 --- a/deploy/provider/azure/service.yaml +++ b/deploy/provider/azure/service.yaml @@ -16,4 +16,4 @@ spec: targetPort: http - name: https port: 443 - targetPort: http + targetPort: https