I’m playing with k8s and Nginx ingress controller
(https://docs.nginx.com/nginx-ingress-controller/).
I have a hostname test.example.com, that handles HTTPS connections, using two certificates (RSA and GOST) signed for the same name.
Is there a proper way of terminating those TLS connections, using Nginx Ingress? Or am I better of using an external load-balancer?
2
Answers
So, the answer was actually in the discussion on GitHub page https://github.com/nginxinc/kubernetes-ingress/issues/1899#issuecomment-905952871
There is no direct support, but one can try a workaround with server-snippets:
First leats clear out what
terminating
is:There are other ways as well as you mentioned like using external
LoadBalancer
but sineNginx
is aLoadBalancer
there is no need to add another externalLoadBalancer
Keep it simple