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.
This commit is contained in:
parent
d3eef047c7
commit
f5ddf6af76
1 changed files with 1 additions and 1 deletions
|
@ -16,4 +16,4 @@ spec:
|
||||||
targetPort: http
|
targetPort: http
|
||||||
- name: https
|
- name: https
|
||||||
port: 443
|
port: 443
|
||||||
targetPort: http
|
targetPort: https
|
||||||
|
|
Loading…
Reference in a new issue